-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 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
{
"name": "@ekroon/opencode-copilot-instructions",
"version": "0.5.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ekroon/opencode-copilot-instructions"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest run --exclude src/e2e.test.ts --exclude '.vendor/**'",
"test:watch": "vitest --exclude src/e2e.test.ts --exclude '.vendor/**'",
"test:e2e": "vitest run src/e2e.test.ts --exclude '.vendor/**'",
"test:e2e:full": "OPENCODE_E2E=true vitest run src/e2e.test.ts --exclude '.vendor/**'",
"test:all": "vitest run --exclude '.vendor/**'"
},
"dependencies": {
"front-matter": "^4.0.2",
"picomatch": "^4.0.0"
},
"peerDependencies": {
"@opencode-ai/plugin": "*"
},
"devDependencies": {
"@opencode-ai/plugin": "latest",
"@opencode-ai/sdk": "^1.1.3",
"@types/node": "^22.0.0",
"@types/picomatch": "^3.0.0",
"typescript": "^5.0.0",
"vitest": "^3.0.0"
}
}