-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.96 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
{
"name": "pinkcode",
"version": "0.2.1",
"description": "Desktop mission control for Grok agents.",
"type": "module",
"keywords": [
"grok",
"agent",
"tauri",
"desktop"
],
"author": "david <david@gplab.cn>",
"license": "UNLICENSED",
"homepage": "https://github.com/3xian/PinkCode#readme",
"bugs": {
"url": "https://github.com/3xian/PinkCode/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/3xian/PinkCode.git"
},
"files": [
".nvmrc",
"contracts",
"docs/logo.png",
"docs/screenshot.png",
"index.html",
"public",
"scripts",
"src",
"src-tauri",
"tsconfig.json",
"tsconfig.node.json",
"vite.config.ts"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest run",
"check:frontend": "npm run test && npm run build",
"check:rust": "node scripts/check-rust.mjs",
"check": "npm run check:frontend && npm run check:rust",
"prepublishOnly": "npm run check",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"icons:regen": "python scripts/regen-app-icons.py",
"icons:windows-export": "python scripts/regen-app-icons.py --windows-export"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.7.2",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vitest": "^4.1.10"
},
"allowScripts": {
"esbuild@0.28.1": true
}
}