-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.5 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.5 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
102
103
104
105
106
107
108
{
"name": "code-editor",
"version": "1.10.0",
"private": true,
"scripts": {
"frontend:dev": "next dev --turbopack",
"frontend:build": "next build",
"desktop:dev": "pnpm exec tauri dev",
"ios:dev": "node scripts/tauri-ios-dev.mjs",
"desktop:check": "tsc --noEmit",
"desktop:build": "cross-env CI=true pnpm exec tauri build --bundles app",
"desktop:package": "cross-env CI=true pnpm exec tauri build",
"ios:build": "cross-env CI=true pnpm exec tauri ios build",
"desktop:build:debug": "pnpm exec tauri build --debug",
"desktop:release": "pnpm desktop:check && pnpm desktop:package",
"desktop:sign": "./scripts/sign-and-deploy.sh",
"desktop:doctor": "pkill -f \"next dev|tauri dev\" || true; rm -f .next/lock",
"bdev": "pnpm desktop:build && pnpm desktop:dev",
"dev": "pnpm desktop:dev",
"build": "pnpm desktop:build",
"check": "pnpm desktop:check",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"secrets:scan": "bash ./scripts/secrets-scan.sh history",
"secrets:scan:staged": "bash ./scripts/secrets-scan.sh staged",
"secrets:baseline": "bash ./scripts/secrets-scan.sh baseline",
"policy:skill-first": "node scripts/preflight-skill-first.mjs staged",
"policy:skill-first:ci": "node scripts/preflight-skill-first.mjs ci",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
},
"dependencies": {
"@iconify/react": "^6.0.2",
"@monaco-editor/loader": "^1.7.0",
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/postcss": "^4.2.1",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-http": "^2.5.7",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-window-state": "^2.4.1",
"@types/dompurify": "^3.2.0",
"@types/node": "^25.3.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"create-markdown": "^0.4.0",
"dompurify": "^3.3.1",
"framer-motion": "^12.34.4",
"next": "^16.1.6",
"postcss": "^8.5.6",
"qrcode.react": "^4.2.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tauri-apps/cli": "^2.10.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"cross-env": "^7.0.3",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.3.2",
"monaco-editor": "^0.55.1",
"prettier": "^3.8.1",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"description": "AI-native code editor powered by OpenClaw. Browser + desktop (Tauri).",
"license": "Apache-2.0",
"author": "OpenKnot Contributors",
"repository": {
"type": "git",
"url": "https://github.com/OpenKnots/code-editor.git"
},
"homepage": "https://editor.openknot.ai",
"keywords": [
"code-editor",
"ai",
"openclaw",
"tauri",
"monaco",
"nextjs"
]
}