-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 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
{
"name": "@tarojs/api",
"version": "4.0.3",
"description": "Taro common API",
"author": "O2Team",
"license": "MIT",
"browser": "dist/index.js",
"main:h5": "dist/index.esm.js",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"dist"
],
"sideEffects": [],
"repository": {
"type": "git",
"url": "git+https://github.com/NervJS/taro.git"
},
"scripts": {
"prod": "pnpm run build",
"prebuild": "pnpm run clean",
"build": "pnpm run rollup --environment NODE_ENV:production",
"clean": "rimraf ./dist",
"dev": "pnpm run rollup --environment NODE_ENV:development -w",
"rollup": "rollup --config rollup.config.ts --configPlugin typescript",
"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"
},
"bugs": {
"url": "https://github.com/NervJS/taro/issues"
},
"engines": {
"node": ">= 18"
},
"devDependencies": {
"@tarojs/runtime": "workspace:*",
"@tarojs/shared": "workspace:*",
"lodash": "4.17.21"
},
"peerDependencies": {
"@tarojs/runtime": "workspace:*",
"@tarojs/shared": "workspace:*"
}
}