@pawlogic/dl 0.3.0-staging.4e6918e
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/bundle/dl.mjs +2 -0
- package/dist/bundle/package.json +13 -0
- package/package.json +49 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pawlogic/dl",
|
|
3
|
+
"version": "0.3.0-staging.4e6918e",
|
|
4
|
+
"description": "iLands skill ↔ Pi backend CLI adapter. 装在 E2B sandbox 里,vendor 调用通过 callback-server 网关转发,本进程不持任何 vendor key。",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"dl": "./dist/bundle/dl.mjs"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/bundle/dl.mjs",
|
|
11
|
+
"dist/bundle/package.json"
|
|
12
|
+
],
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"registry": "https://registry.npmjs.org",
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/PawLogic/pi-mono.git",
|
|
20
|
+
"directory": "packages/dl"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"prepare": "node scripts/write-build-metadata.mjs",
|
|
24
|
+
"clean": "shx rm -rf dist",
|
|
25
|
+
"build": "node scripts/write-build-metadata.mjs && tsgo -p tsconfig.build.json && shx chmod +x dist/index.js",
|
|
26
|
+
"build:bundle": "node scripts/write-build-metadata.mjs && tsc -p tsconfig.build.json && rollup -c rollup.config.mjs && tsx scripts/generate-bundle-package-json.ts && shx chmod +x dist/bundle/dl.mjs",
|
|
27
|
+
"publish:e2b-template": "tsx scripts/publish-e2b-template.ts",
|
|
28
|
+
"dev": "node scripts/write-build-metadata.mjs && tsgo -p tsconfig.build.json --watch --preserveWatchOutput",
|
|
29
|
+
"start": "node dist/index.js",
|
|
30
|
+
"bundle": "npm run build:bundle",
|
|
31
|
+
"test": "npm run bundle && vitest --run"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@rollup/plugin-commonjs": "^29.0.2",
|
|
35
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
36
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
37
|
+
"@rollup/plugin-terser": "^1.0.0",
|
|
38
|
+
"@types/node": "^24.3.0",
|
|
39
|
+
"e2b": "^2.19.0",
|
|
40
|
+
"rollup": "^4.60.1",
|
|
41
|
+
"tsx": "^4.19.0",
|
|
42
|
+
"typescript": "^5.7.3",
|
|
43
|
+
"vitest": "^3.2.4"
|
|
44
|
+
},
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": ">=20.0.0"
|
|
48
|
+
}
|
|
49
|
+
}
|