@delance/builder 0.2.15 → 0.2.16
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/cli.js +34 -34
- package/dist/index.js +526 -503
- package/dist/transform/esmodule/module-helper.d.ts +1 -1
- package/package.json +14 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@delance/builder",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.16",
|
|
4
4
|
"description": "A spear to the Python language server built with black magic",
|
|
5
5
|
"license": "0BSD",
|
|
6
6
|
"author": "mochaaP <npm@mochaa.ws>",
|
|
@@ -12,15 +12,6 @@
|
|
|
12
12
|
"files": [
|
|
13
13
|
"dist"
|
|
14
14
|
],
|
|
15
|
-
"scripts": {
|
|
16
|
-
"build": "bun build index.ts cli.ts --target=node --splitting -e=isolated-vm -e=quickjs-emscripten -e=@babel -e=debug --outdir=dist",
|
|
17
|
-
"build:minify": "bun run build --minify --entry-naming [dir]/[name].min.[ext]",
|
|
18
|
-
"build:types": "tsc -p tsconfig.build.json || exit 0",
|
|
19
|
-
"lint": "eslint .",
|
|
20
|
-
"lint:fix": "eslint . --fix",
|
|
21
|
-
"prepare": "rimraf dist && bun run build:types && bun run build",
|
|
22
|
-
"start": "bun cli.ts"
|
|
23
|
-
},
|
|
24
15
|
"eslintConfig": {
|
|
25
16
|
"env": {
|
|
26
17
|
"es2024": true,
|
|
@@ -89,18 +80,17 @@
|
|
|
89
80
|
"@types/babel__helper-validator-identifier": "^7.15.2",
|
|
90
81
|
"@types/babel__template": "^7.4.4",
|
|
91
82
|
"@types/babel__traverse": "^7.20.6",
|
|
92
|
-
"@types/bun": "^1.1.
|
|
83
|
+
"@types/bun": "^1.1.13",
|
|
93
84
|
"@types/debug": "^4.1.12",
|
|
94
|
-
"bun": "^1.1.
|
|
85
|
+
"bun": "^1.1.34",
|
|
95
86
|
"rimraf": "^6.0.1",
|
|
96
|
-
"typescript": "^5.
|
|
97
|
-
"webcrack": "https://gitpkg.vercel.app/api/pkg.tgz?url=j4k0xb/webcrack/packages/webcrack&commit=
|
|
87
|
+
"typescript": "^5.6.3",
|
|
88
|
+
"webcrack": "https://gitpkg.vercel.app/api/pkg.tgz?url=j4k0xb/webcrack/packages/webcrack&commit=f49c737e78a0b2dfd0b05059ad9dad92647ca76b&scripts.postinstall=rimraf tsconfig.json",
|
|
98
89
|
"xo": "^0.59.3"
|
|
99
90
|
},
|
|
100
91
|
"peerDependencies": {
|
|
101
92
|
"debug": "^4"
|
|
102
93
|
},
|
|
103
|
-
"packageManager": "pnpm@9.0.6",
|
|
104
94
|
"engines": {
|
|
105
95
|
"node": ">=18"
|
|
106
96
|
},
|
|
@@ -119,5 +109,13 @@
|
|
|
119
109
|
"@babel/code-frame": "$@babel/code-frame",
|
|
120
110
|
"@babel/core": "$@babel/core"
|
|
121
111
|
}
|
|
112
|
+
},
|
|
113
|
+
"scripts": {
|
|
114
|
+
"build": "bun build index.ts cli.ts --target=node --splitting -e=isolated-vm -e=quickjs-emscripten -e=@babel -e=debug --outdir=dist",
|
|
115
|
+
"build:minify": "bun run build --minify --entry-naming [dir]/[name].min.[ext]",
|
|
116
|
+
"build:types": "tsc -p tsconfig.build.json || exit 0",
|
|
117
|
+
"lint": "eslint .",
|
|
118
|
+
"lint:fix": "eslint . --fix",
|
|
119
|
+
"start": "bun cli.ts"
|
|
122
120
|
}
|
|
123
|
-
}
|
|
121
|
+
}
|