-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.99 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "vtac-terminal",
"version": "2.0.0",
"private": true,
"description": "VT-AC — a fantasy VT terminal, as a desktop app, a web app, and a CLI",
"author": {
"name": "A.C. Wright",
"email": "acwrightdesign@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acwright/VT-AC.git"
},
"homepage": "https://github.com/acwright/VT-AC",
"license": "MIT",
"main": "./out/main/index.js",
"desktopName": "vtac.desktop",
"keywords": [
"terminal",
"ascii",
"serial",
"8-bit",
"pixel art",
"rs232",
"vt",
"vt-100",
"vt-102",
"electron",
"typescript"
],
"type": "commonjs",
"scripts": {
"postinstall": "node node_modules/electron/install.js",
"art": "node build/gen-art.mjs",
"icons": "npm run art --silent && node build/gen-icon.mjs",
"dev": "electron-vite dev",
"build": "electron-vite build && npm run build:cli",
"preview": "electron-vite preview",
"build:web": "vite build --config vite.web.config.ts",
"build:cli": "tsc -p tsconfig.cli.json",
"cli": "npm run build:cli --silent && node bin/vtac",
"preview:web": "vite preview --config vite.web.config.ts",
"pack": "CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --dir",
"dist:mac": "npm run build && electron-builder --mac",
"dist:win": "npm run build && bash scripts/dist-win.sh",
"dist:linux": "bash scripts/dist-linux.sh",
"dist": "npm run dist:mac && npm run dist:win && npm run dist:linux",
"verify:palette": "node scripts/verify-palette.mjs",
"verify:cellmodel": "node scripts/verify-cellmodel.mjs",
"docs:card": "'/Applications/Google Chrome.app/Contents/MacOS/Google Chrome' --headless --disable-gpu --no-pdf-header-footer --print-to-pdf=docs/VT-AC.pdf docs/VT-AC.html",
"typecheck": "vue-tsc --noEmit && tsc --noEmit -p tsconfig.node.json",
"test": "NODE_OPTIONS='--no-experimental-webstorage' jest",
"test:watch": "NODE_OPTIONS='--no-experimental-webstorage' jest --watch",
"test:coverage": "NODE_OPTIONS='--no-experimental-webstorage' jest --coverage --coverageReporters=text-summary --coverageReporters=lcov"
},
"dependencies": {
"@electron-toolkit/utils": "^3.0.0",
"@heroicons/vue": "^2.2.0",
"buffer": "^6.0.3",
"commander": "^14.0.3",
"pinia": "^3.0.4",
"serialport": "^13.0.0",
"vue": "^3.5.29"
},
"devDependencies": {
"@electron-toolkit/preload": "^3.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@tailwindcss/vite": "^4.2.4",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.3",
"@vitejs/plugin-vue": "^5.2.1",
"electron": "^42.3.3",
"electron-builder": "^26.15.2",
"electron-vite": "^5.0.0",
"figlet": "^1.11.4",
"jest": "^30.2.0",
"tailwindcss": "^4.2.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"vite-plugin-node-polyfills": "^0.26.0",
"vue-tsc": "^2.2.0"
},
"bin": {
"vtac": "./bin/vtac"
},
"allowScripts": {
"@serialport/bindings-cpp@13.0.0": true
}
}