pi-monofold 0.1.0 → 0.1.1
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/package.json +11 -2
- package/tsconfig.json +0 -11
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"scripts": {
|
|
3
|
-
"typecheck": "tsc --noEmit"
|
|
3
|
+
"typecheck": "tsc --noEmit",
|
|
4
|
+
"check": "npm run typecheck && npm pack --dry-run"
|
|
4
5
|
},
|
|
5
6
|
"peerDependencies": {
|
|
6
7
|
"typebox": "*",
|
|
@@ -9,12 +10,17 @@
|
|
|
9
10
|
},
|
|
10
11
|
"description": "Pi extension that folds multiple repositories and folders into a guarded virtual monorepo for AI agents.",
|
|
11
12
|
"type": "module",
|
|
12
|
-
"version": "0.1.
|
|
13
|
+
"version": "0.1.1",
|
|
13
14
|
"pi": {
|
|
14
15
|
"extensions": [
|
|
15
16
|
"./index.ts"
|
|
16
17
|
]
|
|
17
18
|
},
|
|
19
|
+
"files": [
|
|
20
|
+
"README.md",
|
|
21
|
+
"LICENSE",
|
|
22
|
+
"index.ts"
|
|
23
|
+
],
|
|
18
24
|
"name": "pi-monofold",
|
|
19
25
|
"devDependencies": {
|
|
20
26
|
"typescript": "^6.0.3",
|
|
@@ -41,5 +47,8 @@
|
|
|
41
47
|
"url": "https://github.com/eiei114/pi-monofold/issues"
|
|
42
48
|
},
|
|
43
49
|
"homepage": "https://github.com/eiei114/pi-monofold#readme",
|
|
50
|
+
"publishConfig": {
|
|
51
|
+
"access": "public"
|
|
52
|
+
},
|
|
44
53
|
"license": "MIT"
|
|
45
54
|
}
|