vite-plugin-taro-runtime 0.6.7 → 0.6.11
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/README.md +2 -0
- package/package.json +38 -38
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
> WX App-wrap build of `@tarojs/runtime@4.2.0` for `vite-plugin-taro`.
|
|
4
4
|
|
|
5
|
+
> **AI-assisted development is recommended:** Follow the [VPT AI development guide](https://vpt.js.org/guides/ai/) and let a coding assistant create, develop, test, and validate your app.
|
|
6
|
+
|
|
5
7
|
## Status
|
|
6
8
|
|
|
7
9
|
This is a generated support package. It is published so `vite-plugin-taro` can use one reproducibly patched Taro runtime. Application code should not import this package directly.
|
package/package.json
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
}
|
|
2
|
+
"name": "vite-plugin-taro-runtime",
|
|
3
|
+
"version": "0.6.11",
|
|
4
|
+
"description": "Taro 4.2 runtime patched for vite-plugin-taro WX App wrapping.",
|
|
5
|
+
"author": "sep2",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"browser": "dist/index.js",
|
|
8
|
+
"main:h5": "dist/runtime.esm.js",
|
|
9
|
+
"main": "dist/runtime.esm.js",
|
|
10
|
+
"module": "dist/runtime.esm.js",
|
|
11
|
+
"types": "dist/index.d.ts",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"LICENSE",
|
|
15
|
+
"README.md"
|
|
16
|
+
],
|
|
17
|
+
"sideEffects": [
|
|
18
|
+
"./dist/dom-external/index.js"
|
|
19
|
+
],
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/sep2/vite-plugin-taro.git",
|
|
23
|
+
"directory": "packages/taro-runtime"
|
|
24
|
+
},
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/sep2/vite-plugin-taro/issues"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://vpt.js.org",
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=22"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@tarojs/shared": "4.2.0",
|
|
34
|
+
"tslib": "^2.6.2"
|
|
35
|
+
},
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
}
|
|
39
|
+
}
|