-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.42 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.42 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@forloop-cc/forloop-opencode-plugin-planner",
"version": "2.2.4",
"description": "ForLoop integration plugin for opencode — Sprint, story, and agent tools for the ForLoop platform",
"type": "module",
"license": "MIT",
"keywords": [
"opencode",
"plugin",
"forloop",
"agile",
"sprint",
"ai"
],
"repository": {
"type": "git",
"url": "https://github.com/forloop-cc/forloop-opencode-plugin-planner"
},
"homepage": "https://github.com/forloop-cc/forloop-opencode-plugin-planner#readme",
"bugs": "https://github.com/forloop-cc/forloop-opencode-plugin-planner/issues",
"main": "./plugins/forloop-plugin.ts",
"exports": {
".": {
"import": "./plugins/forloop-plugin.ts",
"types": "./plugins/forloop-plugin.ts"
}
},
"files": [
"plugins/",
"scripts/migrate-tokens.js",
"scripts/use-prod.sh",
"docs/",
"install.sh",
"update.sh",
"tsconfig.json",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"SECURITY.md"
],
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint plugins/",
"lint:fix": "eslint plugins/ --fix",
"format": "prettier --write plugins/",
"format:check": "prettier --check plugins/",
"test": "vitest run",
"test:unit": "vitest run test/suites/unit/",
"test:integration": "vitest run test/suites/integration/",
"test:skills": "vitest run test/suites/skills/",
"test:agents": "vitest run test/suites/agents/",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"migrate-tokens": "node ./scripts/migrate-tokens.js",
"prepublishOnly": "npm run typecheck && npm run lint",
"preversion": "npm run lint",
"version": "git add -A package.json",
"postversion": "git push && git push --tags"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"@opencode-ai/plugin": "^1.3.0"
},
"dependencies": {
"@opencode-ai/plugin": "^1.3.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.19.37",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^8.57.0",
"js-yaml": "^4.1.1",
"prettier": "^3.2.5",
"typescript": "^5.0.0",
"vitest": "^4.1.2"
}
}