-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.25 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
{
"name": "@sharperflow/advance",
"version": "1.0.0",
"description": "Advance (ADV) - Spec-driven development plugin for OpenCode where specs become enforceable laws",
"type": "module",
"main": "src/index.ts",
"types": "dist/index.d.ts",
"packageManager": "pnpm@11.9.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Sharper-Flow/Advance.git"
},
"homepage": "https://github.com/Sharper-Flow/Advance#readme",
"bugs": {
"url": "https://github.com/Sharper-Flow/Advance/issues"
},
"author": "Anomaly",
"scripts": {
"build": "tsx scripts/build-plugin.ts && pnpm run build:worker && pnpm run build:identity",
"build:mcp-server": "tsup src/mcp-server/index.ts --format esm --out-dir dist --no-splitting",
"build:worker": "tsup src/temporal/worker.ts src/temporal/workflows.ts --format esm --out-dir dist/temporal && tsx scripts/write-worker-bundle-manifest.ts",
"build:identity": "tsx scripts/write-build-identity.ts",
"dev": "tsup src/index.ts --format esm --watch",
"check": "pnpm run schemas:check && pnpm run typecheck && pnpm run generate:manifests:check && tsx scripts/check-frontmatter.ts && tsx scripts/check-test-isolation.ts && tsx scripts/check-lockfile-policy.ts && pnpm run lint && pnpm run format:check",
"prepublishOnly": "pnpm run build",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"check:sdk-parity": "tsx scripts/check-sdk-parity.ts",
"schemas:generate": "tsx scripts/generate-json-schemas.ts",
"schemas:check": "tsx scripts/generate-json-schemas.ts --check",
"generate:manifests": "tsx scripts/generate-agent-manifests.ts",
"generate:manifests:check": "tsx scripts/generate-agent-manifests.ts --check",
"bench:latency": "bun --smol scripts/bench-adv-latency.ts",
"verify:worker-bundle": "tsx scripts/verify-candidate-worker-bundle.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@opencode-ai/plugin": "^1.18.4",
"@temporalio/client": "^1.16.0",
"@temporalio/worker": "^1.16.0",
"@temporalio/workflow": "^1.16.0",
"jsonc-parser": "^3.3.1",
"lru-cache": "^11.3.6",
"nanoid": "^5.0.9",
"zod": "^4.3.6",
"yaml": "^2.9.0"
},
"devDependencies": {
"@ast-grep/cli": "^0.44.1",
"@eslint/js": "^10.0.1",
"@temporalio/testing": "^1.16.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"bun-types": "^1.3.12",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"jscpd": "^5.0.12",
"knip": "^6.25.0",
"prettier": "^3.8.2",
"tsup": "^8.5.1",
"tsx": "^4.20.6",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"peerDependencies": {
"typescript": "^5.0.0 || ^6.0.0"
},
"engines": {
"node": ">=24.0.0"
},
"files": [
"dist",
"src",
"schemas"
],
"keywords": [
"opencode",
"plugin",
"specs",
"requirements",
"tdd",
"spec-driven",
"validation",
"ai-agent",
"mcp",
"model-context-protocol"
],
"license": "MIT"
}