-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
38 lines (38 loc) · 968 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
32
33
34
35
36
37
38
{
"name": "luxafor-api",
"description": "Tiny tool to control your Luxafor device",
"version": "4.0.0",
"main": "index.js",
"module": "index.mjs",
"scripts": {
"check-types": "tsc --noEmit true",
"build": "rm -rf ./dist/* && rollup --config",
"release": "npm run build && cp *.json dist && cp *.md dist && npm publish ./dist",
"check-release": "npm run release -- --dry-run"
},
"files": [
"*.{js,mjs,ts}"
],
"repository": "iamthefox/luxafor",
"author": "Alex Lisowski <[email protected]>",
"license": "MIT",
"keywords": [
"usb",
"luxafor",
"productivity"
],
"dependencies": {
"colord": "^2.9.2",
"node-hid": "^2.1.0"
},
"devDependencies": {
"@types/node": "^16.11.41",
"@types/node-hid": "^1.3.1",
"prettier": "^2.7.1",
"rollup": "^2.75.6",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"typescript": "^4.2.3",
"tslib": "^2.1.0"
}
}