-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.9 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": "nexus",
"version": "0.1.0",
"description": "Intent-driven micro-app generator powered by Claude AI",
"main": "dist/main.js",
"homepage": ".",
"scripts": {
"dev": "concurrently \"npm run build:watch\" \"npm run vite:dev\" \"npm run electron:dev\"",
"build": "npm run build:main && npm run build:preload && npm run build:renderer",
"build:main": "tsc -p tsconfig.main.json",
"build:preload": "tsc -p tsconfig.preload.json",
"build:renderer": "vite build",
"build:watch": "concurrently \"npm run build:main -- --watch\" \"npm run build:preload -- --watch\"",
"vite:dev": "vite",
"electron:dev": "wait-on dist/main.js && wait-on http://localhost:3000 && electron . --dev",
"electron:pack": "electron-builder --publish never",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"typecheck": "tsc -p tsconfig.renderer.json --noEmit && tsc -p tsconfig.main.json --noEmit && tsc -p tsconfig.preload.json --noEmit",
"check": "npm run typecheck && npm run lint",
"check:fix": "npm run typecheck && npm run lint:fix"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/node-fetch": "^2.6.12",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"autoprefixer": "^10.4.21",
"concurrently": "^8.2.2",
"dexie": "^4.0.11",
"electron": "^29.1.6",
"electron-builder": "^24.13.3",
"eslint": "^9.34.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"fake-indexeddb": "^6.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node-fetch": "^3.3.2",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.12",
"text-encoding": "^0.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3",
"wait-on": "^7.2.0"
},
"dependencies": {
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/react": "^2.10.9",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.6.0",
"dotenv": "^16.4.5",
"electron-reload": "^2.0.0-alpha.1",
"framer-motion": "^11.18.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^3.0.0",
"styled-system": "^5.1.5",
"vite": "^5.4.19"
},
"build": {
"appId": "com.nexus.app",
"productName": "Nexus",
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"node_modules/**/*"
],
"mac": {
"category": "public.app-category.productivity"
},
"win": {
"target": "nsis"
}
}
}