jixo 0.1.0 → 0.3.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/bundle/index.cjs +0 -0
- package/package.json +12 -13
package/bundle/index.cjs
CHANGED
File without changes
|
package/package.json
CHANGED
@@ -1,16 +1,9 @@
|
|
1
1
|
{
|
2
2
|
"name": "jixo",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.3.0",
|
4
4
|
"description": "The AI-Driven Development Foundation for Automated Software Engineering",
|
5
5
|
"main": "index.js",
|
6
6
|
"type": "module",
|
7
|
-
"scripts": {
|
8
|
-
"dev": "tsc --build --watch",
|
9
|
-
"build": "rolldown -c ./rolldown.config.mts",
|
10
|
-
"build2": "esbuild ./index.ts --format=cjs --outfile=./bundle/index.cjs --platform=node",
|
11
|
-
"files-to-prompt": "node ./scripts/files-to-prompt.ts",
|
12
|
-
"jixo": "node bundle/index.cjs"
|
13
|
-
},
|
14
7
|
"bin": "./bundle/index.cjs",
|
15
8
|
"exports": {
|
16
9
|
".": {
|
@@ -24,17 +17,16 @@
|
|
24
17
|
"keywords": [],
|
25
18
|
"author": "Gaubee",
|
26
19
|
"license": "MIT",
|
27
|
-
"packageManager": "pnpm@10.11.1",
|
28
20
|
"dependencies": {
|
29
|
-
"@jixo/cli": "
|
21
|
+
"@jixo/cli": "^0.3.0"
|
30
22
|
},
|
31
23
|
"devDependencies": {
|
32
24
|
"@gaubee/node": "^0.2.1",
|
33
25
|
"@gaubee/nodekit": "^0.8.2",
|
34
26
|
"@gaubee/util": "^0.32.1",
|
35
27
|
"@parcel/watcher": "^2.5.1",
|
36
|
-
"@std/cli": "jsr
|
37
|
-
"@std/fmt": "jsr
|
28
|
+
"@std/cli": "npm:@jsr/std__cli@^1.0.17",
|
29
|
+
"@std/fmt": "npm:@jsr/std__fmt@^1.0.8",
|
38
30
|
"@types/node": "^22.15.30",
|
39
31
|
"esbuild": "^0.25.5",
|
40
32
|
"import-meta-ponyfill": "^3.2.1",
|
@@ -42,5 +34,12 @@
|
|
42
34
|
"prettier-plugin-organize-imports": "^4.1.0",
|
43
35
|
"rolldown": "1.0.0-beta.11",
|
44
36
|
"typescript": "^5.8.3"
|
37
|
+
},
|
38
|
+
"scripts": {
|
39
|
+
"dev": "tsc --build --watch",
|
40
|
+
"build": "rolldown -c ./rolldown.config.mts",
|
41
|
+
"build2": "esbuild ./index.ts --format=cjs --outfile=./bundle/index.cjs --platform=node",
|
42
|
+
"files-to-prompt": "node ./scripts/files-to-prompt.ts",
|
43
|
+
"jixo": "node bundle/index.cjs"
|
45
44
|
}
|
46
|
-
}
|
45
|
+
}
|