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/package.json CHANGED
@@ -1,7 +1,50 @@
1
- {
1
+ {
2
2
  "name": "codexpanel",
3
- "version": "0.0.1",
4
- "description": "placeholder package to reserve name",
5
- "bin": { "codexpanel": "cli.js" },
6
- "license": "MIT"
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
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node
2
- console.log('占名成功: codexpanel');
package/codexh5/cli.js DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node
2
- console.log('占名成功: codexh5');
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node
2
- console.log('占名成功: codexfish');
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node
2
- console.log('占名成功: codexyes');
@@ -1,7 +0,0 @@
1
- {
2
- "name": "codexyes",
3
- "version": "0.0.1",
4
- "description": "placeholder package to reserve name",
5
- "bin": { "codexyes": "cli.js" },
6
- "license": "MIT"
7
- }
@@ -1,7 +0,0 @@
1
- {
2
- "name": "codexfish",
3
- "version": "0.0.1",
4
- "description": "placeholder package to reserve name",
5
- "bin": { "codexfish": "cli.js" },
6
- "license": "MIT"
7
- }
@@ -1,7 +0,0 @@
1
- {
2
- "name": "codexh5",
3
- "version": "0.0.1",
4
- "description": "placeholder package to reserve name",
5
- "bin": { "codexh5": "cli.js" },
6
- "license": "MIT"
7
- }