-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
84 lines (84 loc) · 2.21 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "rpi-led-matrix",
"version": "1.15.0",
"description": "Node.js/Typescript bindings for hzeller/rpi-rgb-led-matrix",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"binding.gyp",
"dist",
"src",
"vendor"
],
"author": "Alex Eden",
"license": "MITNFA",
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/alexeden/rpi-led-matrix/issues"
},
"homepage": "https://github.com/alexeden/rpi-led-matrix#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/alexeden/rpi-led-matrix.git"
},
"keywords": [
"led",
"matrix",
"iot",
"raspberry",
"pi",
"rpi",
"n-api",
"node-addon-api",
"napi"
],
"scripts": {
"build-changes": "echo 'Source will rebuild on changes' && nodemon --config nodemon.build.json",
"build": "npm run clean && node-gyp rebuild && tsup-node src/index.ts --dts --format esm,cjs --target node18 --external '../build/Release/rpi-led-matrix.node'",
"check": "npx tsc -p .",
"clean": "rm -rf build dist",
"docs": "typedoc --out docs src/index.ts",
"format": "prettier --check .",
"lint": "eslint",
"prepublishOnly": "npm run clean &&npm run build",
"merge-submodule-upstream": "(cd vendor && git fetch && git merge origin/master)",
"sync-changes": "echo 'Changes will be pushed to Raspberry Pi' && nodemon --config nodemon.sync.json"
},
"dependencies": {
"node-addon-api": "^8.3.0"
},
"devDependencies": {
"@types/color": "^3.0.1",
"@types/node": "^18",
"@types/prompts": "^2.0.8",
"chalk": "^4.1.0",
"color": "^3.1.2",
"eslint": "^9.20.0",
"eslint-plugin-import": "^2.31.0",
"globby": "^11.0.1",
"nodemon": "^2.0.4",
"npx": "^10.2.2",
"ora": "^5.0.0",
"prettier": "^3.4.2",
"prompts": "^2.3.2",
"rsync": "^0.6.1",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0"
}
}