-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.05 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.05 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
{
"name": "@statista-oss/opencode-workflow",
"version": "0.1.1",
"keywords": [],
"license": "ISC",
"author": "",
"repository": {
"url": "https://github.com/statista-oss/opencode-workflow"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/main.mjs",
"exports": {
"./package.json": "./package.json",
".": "./dist/main.mjs"
},
"scripts": {
"prepare": "husky",
"test": "node --test",
"start": "tsdown",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt"
},
"dependencies": {
"@opencode-ai/plugin": "^1.14.30",
"yaml": "^2.8.3"
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.2",
"@types/node": "^25.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"oxlint-tsgolint": "^0.22.1",
"publint": "^0.3.18",
"tsdown": "^0.21.10"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": "pnpm run lint",
"*": "oxfmt --no-error-on-unmatched-pattern"
},
"packageManager": "pnpm@10.33.2"
}