-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·36 lines (36 loc) · 1 KB
/
package.json
File metadata and controls
executable file
·36 lines (36 loc) · 1 KB
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
{
"name": "image-slider",
"version": "1.0.0",
"description": "Displays images on the rpi-LED-Display",
"main": "dist/ndex.js",
"author": "Jan Fanslau",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-changes": "echo 'Source will rebuild on changes' && nodemon --config nodemon.build.json",
"clean": "rm -rf dist"
},
"dependencies": {
"bindings": "^1.5.0",
"canvas": "^2.11.2",
"dayjs": "^1.11.8",
"dotenv": "^16.3.1",
"gl-matrix": "^3.4.3",
"jimp": "^0.22.8",
"node-addon-api": "^3.0.0",
"rpi-led-matrix": "^1.14.0"
},
"devDependencies": {
"@types/node": "^14.18.48",
"@types/prompts": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^4.6.3"
}
}