codexpanel 0.0.1 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +131 -0
- package/README.zh.md +126 -0
- package/bin/codexpanel.cjs +533 -0
- package/docs/desktop-npx-install-flow.md +694 -0
- package/package.json +49 -6
- package/cli.js +0 -2
- package/codexh5/cli.js +0 -2
- package/codexh5/codexfish/cli.js +0 -2
- package/codexh5/codexfish/codexyes/cli.js +0 -2
- package/codexh5/codexfish/codexyes/package.json +0 -7
- package/codexh5/codexfish/package.json +0 -7
- package/codexh5/package.json +0 -7
package/package.json
CHANGED
|
@@ -1,7 +1,50 @@
|
|
|
1
|
-
|
|
1
|
+
{
|
|
2
2
|
"name": "codexpanel",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "CodexPanel mobile control plane monorepo.",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"private": false,
|
|
7
|
+
"bin": {
|
|
8
|
+
"codexpanel": "bin/codexpanel.cjs"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin",
|
|
12
|
+
"docs/desktop-npx-install-flow.md",
|
|
13
|
+
"README.md"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=18.0.0"
|
|
20
|
+
},
|
|
21
|
+
"workspaces": [
|
|
22
|
+
"apps/*",
|
|
23
|
+
"packages/*"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"dev:web": "npm run dev -w @codexpanel/web",
|
|
27
|
+
"sync:version": "node scripts/sync-product-version.mjs",
|
|
28
|
+
"verify:version": "node scripts/sync-product-version.mjs --check",
|
|
29
|
+
"prebuild": "npm run sync:version",
|
|
30
|
+
"build": "npm run build --workspaces --if-present",
|
|
31
|
+
"check": "npm run verify:version && npm run scan:encoding && npm run verify:api-contracts && npm run verify:storage && npm run check --workspaces --if-present",
|
|
32
|
+
"release:local": "node scripts/release-local.mjs",
|
|
33
|
+
"release:server": "bash scripts/server-autodeploy.sh",
|
|
34
|
+
"release:production": "node scripts/production-release.mjs",
|
|
35
|
+
"verify:release": "node scripts/verify-release.mjs",
|
|
36
|
+
"test:e2e": "playwright test",
|
|
37
|
+
"scan:encoding": "node scripts/scan-encoding.cjs",
|
|
38
|
+
"verify:api-contracts": "node scripts/verify-api-contracts.mjs",
|
|
39
|
+
"generate:codex": "npm run generate -w @codexpanel/codex-app-server",
|
|
40
|
+
"verify:storage": "node scripts/verify-storage-boundary.mjs",
|
|
41
|
+
"smoke:storage": "node scripts/storage-smoke.cjs",
|
|
42
|
+
"purge:retired-desktop-residue": "node scripts/purge-retired-desktop-residue.mjs"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@playwright/test": "1.52.0",
|
|
46
|
+
"@types/node": "^24.0.0",
|
|
47
|
+
"tsx": "^4.19.4",
|
|
48
|
+
"typescript": "^5.8.3"
|
|
49
|
+
}
|
|
50
|
+
}
|
package/cli.js
DELETED
package/codexh5/cli.js
DELETED
package/codexh5/codexfish/cli.js
DELETED