-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.76 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.76 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
{
"name": "@tarojs/helper",
"version": "4.0.4-alpha.0",
"description": "Taro Helper",
"author": "O2Team",
"license": "MIT",
"main": "index.js",
"types": "dist/index.d.ts",
"scripts": {
"prod": "pnpm run build",
"clean": "rimraf --impl=move-remove dist",
"prebuild": "pnpm run clean",
"build": "tsc",
"postbuild": "pnpm run swc:backup",
"dev": "tsc -w",
"prepack": "pnpm run build",
"test": "jest --collectCoverage",
"test:ci": "jest --ci -i --coverage --silent",
"artifacts": "node scripts/artifacts.js",
"swc:backup": "node scripts/backup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NervJS/taro.git"
},
"files": [
"index.js",
"dist",
"types",
"swc"
],
"keywords": [
"taro"
],
"bugs": {
"url": "https://github.com/NervJS/taro/issues"
},
"engines": {
"node": ">= 18"
},
"homepage": "https://github.com/NervJS/taro#readme",
"dependencies": {
"@babel/core": "^7.24.4",
"@babel/generator": "^7.24.4",
"@babel/parser": "^7.24.4",
"@babel/traverse": "^7.24.1",
"@babel/types": "^7.24.0",
"@swc/core": "1.3.96",
"@swc/register": "0.1.10",
"ansi-escapes": "^4.3.2",
"chalk": "^4.1.2",
"chokidar": "^3.6.0",
"cross-spawn": "^7.0.3",
"debug": "^4.3.4",
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6",
"esbuild": "~0.21.0",
"find-yarn-workspace-root": "^2.0.0",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"require-from-string": "^2.0.2",
"resolve": "^1.22.8",
"supports-hyperlinks": "^3.0.0"
},
"devDependencies": {
"@tarojs/taro": "workspace:*",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.5"
}
}