-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 878 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 878 Bytes
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
{
"name": "typescript-tmlanguage",
"version": "1.0.0",
"private": true,
"description": "TextMate grammar files for TypeScript for VS Code, Sublime Text, and Atom",
"scripts": {
"build": "npm run build:grammar && npm run build:tests",
"build:grammar": "tsc -b build -v && node build/build.js",
"build:tests": "tsc -b tests -v",
"pretest": "npm run build",
"test": "node --test tests/test.js",
"diff": "cross-env-shell $DIFF tests/baselines tests/generated",
"accept": "cpx 'tests/generated/*' tests/baselines"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.10.1",
"cpx2": "^8.0.0",
"cross-env": "^10.1.0",
"js-yaml": "^4.1.1",
"plist": "^3.1.0",
"typescript": "^5.9.3",
"vscode-oniguruma": "^2.0.1",
"vscode-textmate": "^9.2.1"
},
"engines": {
"node": ">= 20.9"
}
}