-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
Copy pathpackage.json
72 lines (72 loc) · 1.86 KB
/
package.json
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@tarojs/cli",
"version": "4.0.10-beta.1",
"description": "cli tool for taro",
"author": "O2Team",
"license": "MIT",
"main": "index.js",
"types": "dist/index.d.ts",
"scripts": {
"prod": "pnpm run build",
"test": "cross-env NODE_ENV=test jest",
"test:ci": "cross-env NODE_ENV=test jest --ci -i --coverage --silent",
"test:dev": "cross-env NODE_ENV=test jest --watch",
"test:coverage": "cross-env NODE_ENV=test jest --coverage",
"updateSnapshot": "cross-env NODE_ENV=test jest --updateSnapshot",
"prebuild": "pnpm run clean",
"build": "tsc",
"dev": "tsc -w",
"clean": "rimraf dist"
},
"files": [
"bin",
"src",
"dist",
"templates",
"index.js",
"global.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NervJS/taro.git"
},
"bin": {
"taro": "bin/taro"
},
"keywords": [
"taro",
"weapp"
],
"engines": {
"node": ">= 18"
},
"dependencies": {
"@tarojs/binding": "workspace:*",
"@tarojs/helper": "workspace:*",
"@tarojs/plugin-doctor": "^0.0.13",
"@tarojs/service": "workspace:*",
"@tarojs/shared": "workspace:*",
"adm-zip": "^0.5.16",
"axios": "^1.8.1",
"cli-highlight": "^2.1.11",
"download-git-repo": "^3.0.2",
"envinfo": "^7.14.0",
"inquirer": "^8.2.6",
"latest-version": "^5.1.0",
"minimist": "^1.2.8",
"ora": "^5.4.1",
"semver": "^7.7.1",
"validate-npm-package-name": "^5.0.1"
},
"devDependencies": {
"@babel/types": "^7.26.9",
"@tarojs/plugin-platform-h5": "workspace:*",
"@tarojs/plugin-platform-weapp": "workspace:*",
"@tarojs/taro": "workspace:*",
"@tarojs/webpack5-runner": "workspace:*",
"@types/babel__traverse": "^7.20.6",
"babel-preset-taro": "workspace:*",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2"
}
}