-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2 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
{
"name": "intab",
"private": true,
"version": "1.0.0",
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"electron:dev": "electron electron/main.cjs",
"electron:build": "npm run build && electron-builder"
},
"build": {
"appId": "com.4bytes.intab",
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"directories": {
"buildResources": "public"
},
"mac": {
"target": "dmg"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
},
"dependencies": {
"@electric-sql/pglite": "^0.4.2",
"@isomorphic-git/lightning-fs": "^4.6.2",
"@monaco-editor/react": "^4.7.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"buffer": "^6.0.3",
"clsx": "^2.1.1",
"emception": "^2.0.0",
"framer-motion": "^12.38.0",
"isomorphic-fetch": "^3.0.0",
"isomorphic-git": "^1.37.5",
"jszip": "^3.10.1",
"lenis": "^1.3.21",
"monaco-editor": "^0.53.0",
"node-pty": "^1.1.0",
"prettier": "^3.8.3",
"pyodide": "^0.29.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sql.js": "^1.14.1",
"tailwind-merge": "^3.5.0",
"v86": "^0.5.319",
"vscode-icons-js": "^11.6.1",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/sql.js": "^1.4.11",
"@vitejs/plugin-react": "^6.0.1",
"electron": "^41.0.4",
"electron-builder": "^26.8.1",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"vite": "^8.0.1",
"vite-plugin-static-copy": "^4.0.0"
}
}