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