-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.05 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": "ws2812draw",
"version": "3.0.1",
"description": "Draw to a ws2812 LED matrix with a Raspberry Pi",
"keywords": [
"ws2812",
"ws2812b",
"ws281x",
"led",
"matrix",
"draw",
"text",
"scroll",
"image",
"raspberry",
"pi",
"raspberry-pi"
],
"homepage": "https://github.com/electrovir/ws2812draw",
"bugs": {
"url": "https://github.com/electrovir/ws2812draw/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/electrovir/ws2812draw"
},
"license": "MIT",
"author": {
"name": "electrovir",
"url": "https://github.com/electrovir"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"ws2812draw-test": "dist/tests/example.js"
},
"scripts": {
"build": "node-gyp configure && node-gyp build",
"compile": "rm -rf dist && tsc",
"compile:full": "npm run build && npm run compile",
"example": "npm run compile:full && sudo -E env \"PATH=$PATH\" node dist/tests/example.js",
"example:simple": "npm run compile:full && sudo -E env \"PATH=$PATH\" node dist/tests/example-simple.js",
"example:text": "npm run compile:full && sudo -E env \"PATH=$PATH\" node dist/tests/example-text.js",
"format": "virmator format write",
"install": "npm run build",
"prepublishOnly": "npm run compile:full && npm run test:health",
"spellcheck": "virmator spellcheck",
"test": "npm run compile:full && sudo -E env \"PATH=$PATH\" node dist/tests/full-test.js",
"test:health": "npm run spellcheck && virmator format check && virmator code-in-markdown --check README.md"
},
"dependencies": {
"bindings": "1.5.0",
"node-addon-api": "4.3.0",
"node-gyp": "9.0.0",
"typescript": "4.6.3"
},
"devDependencies": {
"@types/bindings": "1.5.1",
"@types/node": "17.0.23",
"ts-node": "10.7.0",
"virmator": "2.0.5"
}
}