-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
31 lines (31 loc) · 871 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
28
29
30
31
{
"name": "typed-bitwig-api",
"version": "19.0.0",
"repository": "joslarson/typed-bitwig-api",
"description": "TypeScript definition file for the Bitwig Studio Control Surface Scripting API.",
"types": "bitwig-api.d.ts",
"scripts": {
"build": "node -r ts-node/register src/main.ts && npm run check",
"check": "tsc --noEmit bitwig-api.d.ts",
"version": "npm run build && git add bitwig-api.d.ts"
},
"author": "Joseph Larson",
"license": "BSD-3-Clause",
"devDependencies": {
"@types/download": "6.2.4",
"@types/node": "14.14.2",
"@types/prettier": "2.1.5",
"chevrotain": "6.5.0",
"download": "^8.0.0",
"java-parser": "0.8.2",
"prettier": "2.1.2",
"ts-node": "9.0.0",
"typescript": "4.1.2"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
}
}