-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.63 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.63 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
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "pubman",
"version": "2025.12.1",
"repository": "https://github.com/DrawnToDigital/pubman",
"description": "Draft, Track, and Publish 3D models to multiple platforms",
"productName": "PubMan",
"private": true,
"main": "build/main.js",
"author": "DrawnToDigital <contact@drawnto.digital>",
"scripts": {
"next:dev": "next dev",
"next:build": "next build",
"format": "dprint fmt",
"electron:dist": "electron-builder -c electron-builder.yaml -c.mac.identity=null",
"electron:dist:deb": "electron-builder --linux deb",
"electron:build": "tsup",
"build": "run-s next:build electron:build",
"clean": "rm -rf .next appdata build",
"dist": "run-s next:build electron:build electron:dist",
"dev": "cross-env NODE_ENV=development npm-run-all --parallel electron:dev next:dev",
"electron:build_watch": "tsup --watch",
"electron:dev": "npm-run-all --parallel electron:build_watch electron:watch",
"electron:watch": "wait-on http://localhost:3000 && nodemon --watch build/main.js --exec 'electron .'",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"postinstall": "run-s postinstall:electron postinstall:local",
"postinstall:electron": "npx electron-rebuild --force --only better-sqlite3",
"postinstall:local": "npm rebuild better-sqlite3-local",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.817.0",
"@electron-toolkit/utils": "^4.0.0",
"@hookform/resolvers": "^5.0.1",
"@radix-ui/react-dialog": "^1.1.13",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-label": "^2.1.4",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-tooltip": "^1.2.6",
"@tiptap/extension-bullet-list": "^2.12.0",
"@tiptap/extension-color": "^2.12.0",
"@tiptap/extension-heading": "^2.12.0",
"@tiptap/extension-link": "^2.12.0",
"@tiptap/extension-list-item": "^2.12.0",
"@tiptap/extension-ordered-list": "^2.12.0",
"@tiptap/extension-underline": "^2.12.0",
"@tiptap/pm": "^2.12.0",
"@tiptap/react": "^2.12.0",
"@tiptap/starter-kit": "^2.12.0",
"adm-zip": "^0.5.16",
"better-sqlite3": "^11.9.1",
"better-sqlite3-local": "npm:better-sqlite3@^11.9.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dompurify": "^3.2.6",
"electron-log": "^5.4.0",
"electron-serve": "^2.1.1",
"get-port-please": "^3.1.2",
"lucide-react": "^0.488.0",
"next": "15.3.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.55.0",
"tailwind-merge": "^3.2.0",
"tw-animate-css": "^1.2.5",
"zod": "^3.24.3"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/runtime": "^7.27.1",
"@electron/notarize": "^3.0.1",
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.1.4",
"@tailwindcss/typography": "^0.5.16",
"@types/adm-zip": "^0.5.7",
"@types/better-sqlite3": "^7.6.13",
"@types/dompurify": "^3.0.5",
"@types/node": "^20.17.30",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"electron": "^35.2.1",
"electron-builder": "^26.0.12",
"eslint": "^9.25.0",
"eslint-config-next": "15.3.0",
"jest": "^29.7.0",
"jest-mock-console": "^2.0.0",
"nodemon": "^3.1.10",
"npm-run-all": "^4.1.5",
"supertest": "^7.1.0",
"tailwindcss": "^4.1.4",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"wait-on": "^8.0.3"
}
}