-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.88 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.88 KB
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.3-alpha.0",
"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 --impl=move-remove 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/service": "workspace:*",
"@tarojs/shared": "workspace:*",
"@tarojs/plugin-doctor": "^0.0.13",
"adm-zip": "^0.5.12",
"axios": "^1.6.8",
"cli-highlight": "^2.1.11",
"download-git-repo": "^3.0.2",
"envinfo": "^7.12.0",
"inquirer": "^8.2.6",
"latest-version": "^5.1.0",
"minimist": "^1.2.8",
"ora": "^5.4.1",
"semver": "^7.6.0",
"validate-npm-package-name": "^5.0.0"
},
"devDependencies": {
"@babel/types": "^7.24.0",
"@tarojs/taro": "workspace:*",
"@tarojs/plugin-platform-weapp": "workspace:*",
"@tarojs/plugin-platform-h5": "workspace:*",
"@tarojs/webpack5-runner": "workspace:*",
"@types/babel__traverse": "^7.20.2",
"babel-preset-taro": "workspace:*",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.4.0"
}
}