-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.91 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
{
"name": "parallax-opencode",
"version": "0.7.4",
"description": "Verified change loop for OpenCode with protocol preflight, bounded checks, durable receipts, mode skills, and resumable long-running supervision",
"type": "module",
"main": "./dist/plugin.js",
"types": "./dist/plugin.d.ts",
"exports": {
".": {
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.js"
},
"./server": {
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.js"
},
"./dist/hyperplan.js": {
"types": "./dist/hyperplan.d.ts",
"import": "./dist/hyperplan.js"
},
"./verification": {
"types": "./dist/verification.d.ts",
"import": "./dist/verification.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"dist-standalone",
"agents",
"skills",
"scripts/install.mjs",
"LICENSE"
],
"scripts": {
"release": "node scripts/publish.mjs",
"release:dry": "node scripts/publish.mjs --dry-run",
"release:patch": "node scripts/publish.mjs --patch",
"release:check": "npm run release:metadata && npm run typecheck && npm test -- --coverage && npm run build:all && npm run test:pack && npm run test:opencode && npm run audit:release",
"release:metadata": "node scripts/publish.mjs --metadata-only",
"prepublishOnly": "npm run release:check",
"build": "tsc --project tsconfig.build.json",
"build:standalone": "npx esbuild src/plugin.ts --bundle --outfile=dist-standalone/parallax-engine.js --platform=node --format=esm --external:@opencode-ai/plugin && node -e \"require('fs').copyFileSync('dist/plugin.d.ts', 'dist-standalone/parallax-engine.d.ts')\"",
"build:all": "npm run build && npm run build:standalone",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:pack": "node scripts/pack-smoke.mjs",
"test:opencode": "node scripts/opencode-e2e.mjs",
"audit:release": "npm audit --audit-level=high"
},
"bin": {
"parallax": "dist/cli.js",
"parallax-opencode": "scripts/install.mjs"
},
"keywords": [
"opencode",
"plugin",
"parallax",
"friction-loop",
"verification",
"ai-agent"
],
"license": "MIT",
"author": "Master0fFate",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20",
"opencode": ">=1.18.0 <1.19.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Master0fFate/parallax-opencode.git"
},
"homepage": "https://github.com/Master0fFate/parallax-opencode#readme",
"bugs": {
"url": "https://github.com/Master0fFate/parallax-opencode/issues"
},
"dependencies": {
"@opencode-ai/plugin": "~1.18.4"
},
"devDependencies": {
"@types/node": "^22.20.1",
"@vitest/coverage-v8": "^4.1.10",
"bun-types": "^1.3.14",
"esbuild": "^0.28.1",
"opencode-ai": "1.18.4",
"typescript": "^5.9.3",
"vite": "7.3.6",
"vitest": "^4.1.10"
}
}