-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.77 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.77 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
{
"name": "@fro.bot/systematic",
"version": "0.1.0",
"description": "Structured engineering workflows for OpenCode",
"type": "module",
"main": "./dist/index.js",
"bin": {
"systematic": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"skills",
"agents",
"commands"
],
"scripts": {
"clean": "rimraf dist",
"build": "bun run clean && bun build src/index.ts src/cli.ts --outdir dist --target bun --splitting --packages external && tsc --emitDeclarationOnly",
"dev": "bun --watch src/index.ts",
"test": "bun test tests/unit",
"test:integration": "bun test tests/integration",
"test:all": "bun test",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"fix": "bun run lint --fix",
"prepublishOnly": "bun run build"
},
"keywords": [
"opencode",
"plugin",
"ai",
"workflow",
"engineering"
],
"author": "Marcus R. Brown",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marcusrbrown/systematic.git"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@opencode-ai/plugin": "^1.1.30"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@opencode-ai/plugin": "^1.1.30",
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"conventional-changelog-conventionalcommits": "^9.0.0",
"markdownlint-cli": "^0.47.0",
"rimraf": "^6.1.2",
"semantic-release": "^25.0.0",
"semantic-release-export-data": "^1.2.0",
"typescript": "^5.7.0"
},
"dependencies": {
"js-yaml": "^4.1.1",
"jsonc-parser": "^3.3.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}