-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 2 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
{
"name": "cncjs-pendant-streamdeck",
"version": "1.1.0",
"description": "A cncjs pendant for the Elgato Stream Deck",
"license": "MIT",
"files": [
"dist/cli/*.js",
"dist/cli/assets/*.js",
"dist/cli/config.example.json"
],
"bin": {
"cncjs-pendant-streamdeck": "dist/cli/cli.js"
},
"repository": "github:billiam/cncjs-pendant-streamdeck",
"scripts": {
"dev": "vite --port 3434",
"build": "vite build",
"cli-dev": "npm run cli -- --mode development",
"cli": "vite build --config=vite.node.config.js --ssr",
"package": "npm run cli && bin/cli-package.sh",
"web-package": "npm run build && bin/web-package.sh",
"preview": "vite preview --port 5050",
"test": "vitest",
"format": "prettier . --write",
"update-changelog": "git-conventional-commits changelog -f CHANGELOG.md --markdown-prefix '# Changelog'"
},
"dependencies": {
"@elgato-stream-deck/node": "^5.4.0",
"@julusian/jpeg-turbo": "^2.0.0",
"chalk": "^4.1.2",
"cncjs-pendant-streamdeck-validator": "^2.1.0",
"commander": "^9.3.0",
"hull.js": "andriiheonia/hull",
"jsonschema": "^1.4.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mitt": "^3.0.0",
"node-fetch": "^2.6.7",
"pinia": "^2.0.13",
"points-on-curve": "^1.0.1",
"sharp": "^0.30.7",
"simple-evaluate": "^1.4.4",
"socket.io-client": "^2.4.1",
"spark-md5": "^3.0.2",
"tinycolor2": "^1.4.2",
"vue": "^3.2.33"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@vitejs/plugin-legacy": "^2.0.0",
"@vitejs/plugin-vue": "^3.0.1",
"@primevue/themes": "^4.0.5",
"cation": "https://github.com/billiam/Cation.git",
"git-conventional-commits": "https://github.com/billiam/git-conventional-commits.git#custom-formatting",
"prettier": "^3.3.3",
"primevue": "^4.0.5",
"sass": "^1.52.1",
"vite": "^3.2.5",
"vitest": "^2.0.5"
},
"optionalDependencies": {
"canvas": "^2.9.0",
"pureimage": "^0.3.14"
}
}