forked from met5678/node-traktor-f1
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.61 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
46
47
48
49
50
{
"name": "ni-controllers-lib",
"version": "1.2.3",
"description": "A package providing access to some Native Instruments controllers. Supports all inputs and setting any LED and LCD displays when available.",
"files": [
"dist"
],
"main": "dist/lib/index.js",
"dependencies": {
"@types/node": "^17.0.36",
"@types/tinycolor2": "^1.4.2",
"@types/w3c-web-usb": "^1.0.6",
"node-hid": "^2.1.1",
"tinycolor2": "^1.4.1",
"usb": "^2.4.2"
},
"devDependencies": {
"@types/node-hid": "^1.3.1",
"concurrently": "^5.2.0",
"jpeg-js": "^0.4.0",
"ndb": "^1.1.5",
"parcel-bundler": "^1.3.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"slimerjs": "^1.0.0",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"scripts": {
"check:style": "prettier --check '{lib,types,examples}/**/*{.ts,.d.ts,.json,*.md}' '*.md'",
"check:ts": "tsc --noEmit",
"test": "concurrently 'npm run check:ts' 'npm run check:style'",
"clean": "rimraf dist/*",
"build": "tsc",
"watch": "tsc --watch",
"prepack": "npm run clean && npm run build",
"example:maschinemk3:node": "ts-node --transpile-only examples/maschine_mk3/node.ts",
"example:maschinemk3:web": "parcel examples/maschine_mk3/web.html",
"example:maschinemk2mikro:node": "ts-node --transpile-only examples/maschine_mk2_mikro/node.ts",
"example:maschinemk2mikro:web": "parcel examples/maschine_mk2_mikro/web.html"
},
"repository": {
"type": "git",
"url": "/~https://github.com/asutherland/ni-controllers-lib.git"
},
"license": "ISC",
"browserslist": [
"last 2 Chrome versions"
]
}