-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 828 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 828 Bytes
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
40
41
42
{
"name": "@tarojs/taro-loader",
"version": "4.0.13-alpha.0",
"description": "Taro runner use webpack loader",
"author": "O2Team",
"license": "MIT",
"main": "lib/app.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NervJS/taro.git"
},
"scripts": {
"prod": "pnpm run build",
"build": "tsc",
"dev": "tsc -w",
"test": "jest"
},
"bugs": {
"url": "https://github.com/NervJS/taro/issues"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"@tarojs/helper": "workspace:*",
"@tarojs/shared": "workspace:*"
},
"devDependencies": {
"@tarojs/taro": "workspace:*",
"webpack": "5.91.0"
},
"peerDependencies": {
"webpack": "5.91.0"
}
}