-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
27 lines (27 loc) · 814 Bytes
/
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
{
"name": "swift-tmlanguage",
"private": true,
"repository": "git@github.com:jtbandes/swift-tmlanguage.git",
"author": {
"name": "Jacob Bandes-Storch",
"url": "https://github.com/jtbandes"
},
"license": "MIT",
"packageManager": "yarn@4.0.1",
"scripts": {
"build": "yarn build:json && yarn build:plist",
"build:json": "ts-node scripts/yaml-to-json.ts -i Swift.tmLanguage.yaml -o Swift.tmLanguage.json",
"build:plist": "ts-node scripts/json-to-plist.ts -i Swift.tmLanguage.json -o Syntaxes/Swift.tmLanguage"
},
"devDependencies": {
"@tsconfig/node20": "20.1.2",
"@types/node": "20.8.9",
"@types/plist": "3.0.4",
"commander": "11.1.0",
"plist": "3.1.0",
"prettier": "3.0.3",
"ts-node": "10.9.1",
"typescript": "5.2.2",
"yaml": "2.3.3"
}
}