-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.66 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.66 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
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
{
"name": "cardcast",
"version": "1.0.1",
"description": "Streaming overlay tool for TCG content creators",
"main": "server.js",
"bin": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"build": "node scripts/build-exe.js",
"build-portable": "node scripts/build-portable.js",
"test": "node scripts/test-setup.js",
"setup": "npm install && node scripts/test-setup.js",
"clean": "rimraf node_modules dist data/*.db cache/*",
"rebuild": "npm run clean && npm install && npm run test",
"build-css": "tailwindcss -i ./public/css/input.css -o ./public/css/style.css --watch",
"build-css-prod": "tailwindcss -i ./public/css/input.css -o ./public/css/style.css --minify"
},
"keywords": [
"tcg",
"streaming",
"overlay",
"obs",
"pokemon",
"magic",
"yugioh",
"lorcana"
],
"author": "",
"license": "GPL-3.0",
"dependencies": {
"axios": "^1.6.0",
"better-sqlite3": "^9.2.2",
"cheerio": "^1.0.0-rc.12",
"csv-parser": "^3.2.0",
"express": "^4.18.2",
"socket.io": "^4.6.0"
},
"devDependencies": {
"autoprefixer": "^10.4.21",
"daisyui": "^4.12.10",
"nodemon": "^3.0.2",
"pkg": "^5.8.1",
"postcss": "^8.5.6",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.1"
},
"engines": {
"node": ">=14.0.0"
},
"pkg": {
"assets": [
"public/**/*",
"src/**/*",
"overlays/**/*",
"index.html",
"config.json",
"node_modules/axios/**/*"
],
"scripts": [
"src/**/*.js",
"node_modules/axios/dist/node/axios.cjs"
],
"targets": [
"node18-win-x64"
],
"outputPath": "dist"
}
}