-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.62 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.62 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
{
"name": "opencode-adaptive-thinking",
"version": "0.1.3",
"description": "Adaptive Thinking Plugin for OpenCode",
"homepage": "https://github.com/ian-pascoe/opencode-adaptive-thinking#readme",
"bugs": {
"url": "https://github.com/ian-pascoe/opencode-adaptive-thinking/issues"
},
"license": "MIT",
"author": "Ian Pascoe",
"repository": {
"type": "git",
"url": "git+https://github.com/ian-pascoe/opencode-adaptive-thinking.git"
},
"files": [
"dist",
"README.md"
],
"type": "module",
"main": "dist/index.js",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "rolldown -c",
"build:watch": "rolldown -c -w",
"changeset": "changeset",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prepare": "husky",
"release": "pnpm run build && changeset publish",
"test": "vitest run",
"typecheck": "tsgo --noEmit",
"verify": "pnpm run format:check && pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build",
"version-packages": "changeset version"
},
"dependencies": {
"@opencode-ai/plugin": "^1.15.10",
"@opencode-ai/sdk": "^1.15.10",
"zod": "^4.4.3"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@types/node": "^25.9.1",
"@typescript/native-preview": "7.0.0-dev.20260526.1",
"husky": "^9.1.7",
"oxfmt": "^0.52.0",
"oxlint": "^1.67.0",
"rolldown": "1.0.2",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"packageManager": "pnpm@10.33.2"
}