-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
118 lines (118 loc) · 3.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "fountain-lsp",
"displayName": "Fountain Scriptwriting",
"description": "Fountain Language Server and Client for Visual Studio Code",
"author": "Oliver Paraskos",
"icon": "assets/[email protected]",
"main": "./client/dist/main",
"license": "MIT",
"version": "1.8.6",
"repository": {
"type": "git",
"url": "https://github.com/oparaskos/vscode-fountain"
},
"publisher": "oliverparaskos",
"categories": [],
"keywords": [
"fountain",
"scriptwriting"
],
"engines": {
"vscode": "^1.63.0"
},
"activationEvents": [
"onLanguage:fountain",
"onWebviewPanel:vscode-fountain.fountainStats"
],
"scripts": {
"--------- BUILD ----------": "",
"build": "concurrently 'npm run build:webview' 'npm run build:client' 'npm run build:server'",
"build:webview": "cd webviews && npm run build",
"build:client": "cd client && npm run build",
"build:server": "cd server && npm run build",
"--------- WATCH ----------": "",
"watch:client": "cd client && npm run watch",
"watch:server": "cd server && npm run watch",
"watch:webview": "cd webviews && npm run watch",
"--------- INSTALL ----------": "",
"preinstall": "git submodule update --recursive --remote",
"postinstall": "concurrently 'npm run install:webview' 'npm run install:client' 'npm run install:server'",
"install:client": "cd client && npm install",
"install:server": "cd server && npm install",
"install:webview": "cd webviews && npm install",
"--------- TEST ----------": "",
"build:e2e": "cd client/ && npm run build:e2e",
"e2e": "npm run build:e2e && sh ./scripts/e2e.sh",
"lint": "eslint ./client/src ./server/src ./webviews/src ./parser/src --ext .ts,.tsx"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"concurrently": "^7.4.0",
"eslint": "^8.13.0",
"html-loader": "^4.2.0",
"mini-css-extract-plugin": "^2.7.6",
"mocha": "^9.2.1",
"semantic-release": "^19.0.5",
"svgo": "^3.0.2",
"svgo-loader": "^4.0.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^4.7.2",
"url-loader": "^4.1.1"
},
"extensionDependencies": [
"redhat.vscode-yaml"
],
"contributes": {
"yamlValidation": [
{
"fileMatch": ".fountainrc",
"url": "./schemas/fountainrc.schema.json"
}
],
"configurationDefaults": {
"[fountain]": {
"editor.wordWrap": "on",
"editor.wordBasedSuggestions": false,
"editor.suggestSelection": "first"
}
},
"languages": [
{
"id": "yaml",
"extensions": [
".fountainrc"
],
"icon": {
"light": "./assets/fountain-config-monochrome.svg",
"dark": "./assets/fountain-config-monochrome.svg"
}
},
{
"id": "fountain",
"aliases": [
"Fountain",
"fountain"
],
"extensions": [
".fountain",
".spmd"
],
"icon": {
"light": "./assets/fountain-logo-monochrome.svg",
"dark": "./assets/fountain-logo-monochrome.svg"
},
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "fountain",
"scopeName": "text.source.fountain",
"path": "./syntaxes/fountain.tmLanguage.json"
}
]
}
}