-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.79 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
{
"name": "dasm",
"description": "Language support for DASM 6502",
"author": "Anton",
"license": "MIT",
"version": "2.2.1",
"icon": "logo.png",
"repository": {
"type": "git",
"url": "https://github.com/Settis/dasm-vscode"
},
"publisher": "Settis",
"categories": [
"Programming Languages"
],
"keywords": [
"dasm",
"assembler",
"6502"
],
"engines": {
"vscode": "^1.52.0"
},
"activationEvents": [
"onLanguage:dasm"
],
"main": "./out/client",
"contributes": {
"languages": [
{
"id": "dasm",
"extensions": [
".asm"
],
"configuration": "./syntaxes/dasmConfig.json"
}
],
"grammars": [
{
"language": "dasm",
"scopeName": "source.dasm",
"path": "./syntaxes/dasmGrammar.json"
}
],
"configuration": {
"title": "DASM",
"properties": {
"dasm.labels.localPrefix": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "Hide labels in autocompletion in other files by this prefix"
}
}
},
"configurationDefaults": {
"[dasm]": {
"editor.wordBasedSuggestions": "off"
}
}
},
"scripts": {
"vscode:prepublish": "npm run esbuild-client-base -- --minify && npm run esbuild-server-base -- --minify",
"package": "npx vsce package",
"compile": "npm run esbuild-client && npm run esbuild-server",
"watch": "tsc -b -w",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx",
"postinstall": "cd client && npm ci && cd ../server && npm ci && cd ..",
"test": "sh ./e2eTests/e2e.sh",
"esbuild-client-base": "esbuild ./client/src/extension.ts --bundle --outfile=out/client.js --external:vscode --format=cjs --platform=node",
"esbuild-server-base": "esbuild ./server/src/server.ts --bundle --outfile=out/server.js --external:vscode --format=cjs --platform=node",
"esbuild-client": "npm run esbuild-client-base -- --sourcemap",
"esbuild-client-watch": "npm run esbuild-client-base -- --sourcemap --watch",
"esbuild-server": "npm run esbuild-server-base -- --sourcemap",
"esbuild-server-watch": "npm run esbuild-server-base -- --sourcemap --watch",
"test-compile": "tsc -b",
"clean": "rm -rf out && rm -rf client/out && rm -rf server/out",
"release": "release-it"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^5.0.0",
"@types/glob": "^7.1.4",
"@types/mocha": "^8.2.2",
"@types/node": "^12.12.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"esbuild": "^0.13.2",
"eslint": "^7.26.0",
"mocha": "^10.0.0",
"release-it": "^17.0.1",
"typescript": "^4.3.5"
}
}