-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.1 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.1 KB
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
{
"name": "gnu-assembler-language-support",
"displayName": "GNU Assembler Language Support",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.98.0"
},
"extensionKind": [
"workspace"
],
"categories": [
"Programming Languages"
],
"activationEvents": [
"onStartupFinished",
"onFileSystem:file"
],
"browser": "./dist/web/extension.js",
"contributes": {
"languages": [
{
"id": "gnu-assembler",
"extensions": [
".s",
".S"
],
"aliases": [
"GAS",
"GNU Assembler"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "gnu-assembler",
"scopeName": "source.assembly.gnu",
"path": "./syntaxes/gnu-assembler.tmLanguage.json"
}
]
},
"scripts": {
"test": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/web/test/suite/extensionTests.js",
"pretest": "npm run compile-web",
"vscode:prepublish": "npm run package-web",
"compile-web": "npm run check-types && npm run lint && node esbuild.js",
"watch-web": "npm-run-all -p watch-web:*",
"watch-web:esbuild": "node esbuild.js --watch",
"watch-web:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package-web": "npm run check-types && npm run lint && node esbuild.js --production",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. ."
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@types/assert": "^1.5.11",
"@types/mocha": "^10.0.10",
"@types/vscode": "^1.99.1",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"@vscode/test-web": "^0.0.68",
"assert": "^2.1.0",
"esbuild": "^0.25.3",
"eslint": "^9.25.1",
"glob": "^11.0.2",
"mocha": "^11.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"type-fest": "^4.40.0",
"typescript": "^5.8.3"
}
}