-
Notifications
You must be signed in to change notification settings - Fork 226
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "tmlanguage-generator",
"version": "0.5.10",
"author": "Microsoft Corporation",
"description": "Helper library to generate TextMate syntax highlighting tmLanguage files.",
"homepage": "https://github.com/microsoft/typespec/tree/main/packages/tmlanguage-generator",
"readme": "https://github.com/microsoft/typespec/blob/main/packages/tmlanguage-generator/README.md",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/typespec.git"
},
"bugs": {
"url": "https://github.com/microsoft/typespec/issues"
},
"keywords": [
"textmate",
"tmlanguage"
],
"main": "dist/tmlanguage-generator.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix"
},
"files": [
"dist/**",
"!dist/test/**"
],
"dependencies": {
"onigasm": "~2.2.5",
"plist": "~3.1.0"
},
"devDependencies": {
"@types/node": "~22.7.9",
"@types/plist": "~3.0.5",
"rimraf": "~6.0.1",
"typescript": "~5.6.3"
}
}