-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.67 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "dotstar-node",
"version": "2.0.0",
"description": "Control Dotstar (APA102 or SK9822) LEDs via Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"prepublishOnly": "npm run lint && npm run build",
"build": "rm -rf dist && tsc -p src",
"build:all": "npm run build && (cd app/server && npm run build) && (cd app/browser && npm run build)",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src/**/*.ts",
"sync-build": "nodemon --config nodemon.build-sync.config.json",
"sync-gyp": "nodemon --config nodemon.gyp-sync.config.json",
"sync-changes": "nodemon --config nodemon.change-sync.config.json",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexeden/dotstar-node.git"
},
"author": "Alex Eden",
"license": "MITNFA",
"bugs": {
"url": "https://github.com/alexeden/dotstar-node/issues"
},
"homepage": "https://github.com/alexeden/dotstar-node#readme",
"keywords": [
"apa102",
"dotstar",
"iot",
"led",
"leds",
"n-api",
"napi",
"pi",
"raspberry",
"rpi",
"sk9822",
"serial",
"spi",
"strip"
],
"devDependencies": {
"@types/node": "^14.14.22",
"@types/ramda": "^0.27.36",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint": "^7.19.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rsync": "^0.6.1",
"typescript": "^4.1.3"
},
"dependencies": {
"spi-node": "^3.0.0"
}
}