pi-adaptive-thinking 0.0.0 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config-loader.d.ts +2 -2
- package/package.json +19 -18
package/dist/config-loader.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { type AdaptiveThinkingConfig } from "./config
|
|
2
|
-
export type { AdaptiveThinkingConfig } from "./config
|
|
1
|
+
import { type AdaptiveThinkingConfig } from "./config";
|
|
2
|
+
export type { AdaptiveThinkingConfig } from "./config";
|
|
3
3
|
export type LoadConfigOptions = {
|
|
4
4
|
cwd: string;
|
|
5
5
|
homeDir?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-adaptive-thinking",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Pi Adaptive Thinking extension",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adaptive-thinking",
|
|
@@ -37,21 +37,6 @@
|
|
|
37
37
|
"access": "public",
|
|
38
38
|
"provenance": true
|
|
39
39
|
},
|
|
40
|
-
"scripts": {
|
|
41
|
-
"build": "pnpm run clean && pnpm run build:js && pnpm run build:types",
|
|
42
|
-
"build:js": "rolldown -c",
|
|
43
|
-
"build:types": "tsgo --project tsconfig.build.json --emitDeclarationOnly",
|
|
44
|
-
"build:watch": "rolldown -c -w",
|
|
45
|
-
"clean": "rm -rf dist",
|
|
46
|
-
"format": "oxfmt",
|
|
47
|
-
"format:check": "oxfmt --check",
|
|
48
|
-
"lint": "oxlint",
|
|
49
|
-
"lint:fix": "oxlint --fix",
|
|
50
|
-
"test": "vitest run",
|
|
51
|
-
"typecheck": "tsgo --noEmit",
|
|
52
|
-
"verify": "pnpm run format:check && pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build",
|
|
53
|
-
"prepare": "husky"
|
|
54
|
-
},
|
|
55
40
|
"devDependencies": {
|
|
56
41
|
"@changesets/changelog-github": "^0.7.0",
|
|
57
42
|
"@changesets/cli": "^2.31.0",
|
|
@@ -69,10 +54,26 @@
|
|
|
69
54
|
"@earendil-works/pi-coding-agent": "*",
|
|
70
55
|
"typebox": "*"
|
|
71
56
|
},
|
|
72
|
-
"packageManager": "pnpm@10.33.2",
|
|
73
57
|
"pi": {
|
|
74
58
|
"extensions": [
|
|
75
59
|
"./dist/index.js"
|
|
76
60
|
]
|
|
61
|
+
},
|
|
62
|
+
"scripts": {
|
|
63
|
+
"build": "pnpm run clean && pnpm run build:js && pnpm run build:types",
|
|
64
|
+
"build:js": "rolldown -c",
|
|
65
|
+
"build:types": "tsgo --project tsconfig.build.json --emitDeclarationOnly",
|
|
66
|
+
"build:watch": "rolldown -c -w",
|
|
67
|
+
"changeset": "changeset",
|
|
68
|
+
"clean": "rm -rf dist",
|
|
69
|
+
"format": "oxfmt",
|
|
70
|
+
"format:check": "oxfmt --check",
|
|
71
|
+
"lint": "oxlint",
|
|
72
|
+
"lint:fix": "oxlint --fix",
|
|
73
|
+
"release": "pnpm run build && changeset publish",
|
|
74
|
+
"test": "vitest run",
|
|
75
|
+
"typecheck": "tsgo --noEmit",
|
|
76
|
+
"verify": "pnpm run format:check && pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build",
|
|
77
|
+
"version-packages": "changeset version"
|
|
77
78
|
}
|
|
78
|
-
}
|
|
79
|
+
}
|