-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "immutable-place-pixoo",
"version": "1.0.1",
"description": "Displays immutable.place art on a Pixoo 64",
"keywords": [
"peercoin",
"blockchain",
"crypto",
"pixoo",
"divoom",
"art"
],
"repository": "https://github.com/MatthewLM/immutable-place-pixoo",
"scripts": {
"start": "npx ts-node src/main.ts",
"image": "npx ts-node src/image.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.ts src/*.ts"
},
"author": "Matthew Mitchell",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/argparse": "^2.0.10",
"@types/node": "^18.7.3",
"@canvas/image-data": "^1.0.0",
"argparse": "^2.0.1",
"axios": "^1.1.3",
"coin-canvas-lib": "^1.0.0",
"gpu.js": "^2.15.2",
"jimp": "^0.16.1",
"ts-node": "^10.9.1"
},
"bin": {
"immutable-place-pixoo": "src/main.ts"
}
}