@weapp-vite/miniprogram-automator 0.0.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/LICENSE +21 -0
- package/README.md +7 -0
- package/dist/chunk-CKQMccvm.cjs +28 -0
- package/dist/index.cjs +5443 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +305 -0
- package/dist/index.d.mts +305 -0
- package/dist/index.mjs +5414 -0
- package/dist/index.mjs.map +1 -0
- package/dist/launch-Byc8UeaF.cjs +6425 -0
- package/dist/launch-Byc8UeaF.cjs.map +1 -0
- package/dist/launch-IFPMxQYb.mjs +6420 -0
- package/dist/launch-IFPMxQYb.mjs.map +1 -0
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@weapp-vite/miniprogram-automator",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.0",
|
|
5
|
+
"description": "完全兼容微信 miniprogram-automator 的现代化替代实现",
|
|
6
|
+
"author": "ice breaker <1324318532@qq.com>",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"homepage": "https://github.com/weapp-vite/weapp-vite",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/weapp-vite/weapp-vite.git",
|
|
12
|
+
"directory": "packages/miniprogram-automator"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/weapp-vite/weapp-vite/issues"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"weapp",
|
|
19
|
+
"wechat",
|
|
20
|
+
"miniprogram",
|
|
21
|
+
"automator",
|
|
22
|
+
"devtools",
|
|
23
|
+
"headless"
|
|
24
|
+
],
|
|
25
|
+
"sideEffects": false,
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./dist/index.d.mts",
|
|
29
|
+
"import": "./dist/index.mjs",
|
|
30
|
+
"require": "./dist/index.cjs"
|
|
31
|
+
},
|
|
32
|
+
"./package.json": "./package.json"
|
|
33
|
+
},
|
|
34
|
+
"main": "./dist/index.cjs",
|
|
35
|
+
"module": "./dist/index.mjs",
|
|
36
|
+
"types": "./dist/index.d.mts",
|
|
37
|
+
"files": [
|
|
38
|
+
"README.md",
|
|
39
|
+
"dist"
|
|
40
|
+
],
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"debug": "^4.4.3",
|
|
46
|
+
"sharp": "^0.34.5",
|
|
47
|
+
"ws": "^8.18.3"
|
|
48
|
+
},
|
|
49
|
+
"publishConfig": {
|
|
50
|
+
"access": "public",
|
|
51
|
+
"registry": "https://registry.npmjs.org"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@types/ws": "^8.18.1"
|
|
55
|
+
},
|
|
56
|
+
"scripts": {
|
|
57
|
+
"dev": "tsdown -w --sourcemap",
|
|
58
|
+
"build": "tsdown",
|
|
59
|
+
"test": "vitest run --config ./vitest.config.ts",
|
|
60
|
+
"test:dev": "vitest --config ./vitest.config.ts",
|
|
61
|
+
"typecheck": "tsc --noEmit -p ./tsconfig.json",
|
|
62
|
+
"lint": "eslint .",
|
|
63
|
+
"lint:fix": "eslint . --fix"
|
|
64
|
+
}
|
|
65
|
+
}
|