-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.78 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "taro-ui",
"version": "3.3.0",
"description": "UI KIT for Taro",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"source": "src/index.ts",
"react-native": "rn/index.ts",
"sideEffects": [
"*.scss",
"*.css"
],
"types": "./types/index.d.ts",
"keywords": [
"taro",
"taro-ui",
"ui"
],
"files": [
"lib",
"dist",
"types",
"rn"
],
"author": "O2Team <aotu.io>",
"homepage": "https://taro-ui.taro.zone",
"repository": {
"type": "git",
"url": "[email protected]:nervjs/taro-ui.git"
},
"license": "MIT",
"scripts": {
"dev": "pnpm run dev:lib",
"dev:lib": "tsc --project ./tsconfig.build.json --watch --incremental",
"dev:rollup": "rollup --config ./config/rollup.config.js --watch",
"build": "pnpm run build:rollup && pnpm run build:lib",
"build:lib": "tsc --project ./tsconfig.build.json",
"build:rollup": "rollup --config ./config/rollup.config.js",
"lint": "eslint ./src --fix",
"lint:style": "stylelint \"src/**/*.scss\" --syntax scss",
"lint:style-fix": "stylelint \"src/**/*.scss\" --syntax scss --fix",
"test": "cross-env NODE_ENV=test && jest --coverage",
"test:ci": "pnpm run build:h5 && pnpm run test",
"test:analyze": "rollup --config ./config/rollup.config.analyze.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"clean": "rimraf .temp dist lib coverage"
},
"dependencies": {
"classnames": "^2.2.6",
"dayjs": "^1.7.7",
"lodash": "^4.17.10",
"prop-types": "^15.7.2",
"react-native-modal": "^13.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@tarojs/components": "3.6.6",
"@tarojs/react": "3.6.6",
"@tarojs/runtime-rn": "3.6.6",
"@tarojs/taro": "3.6.6",
"@types/classnames": "^2.2.9",
"@types/node": "~16.6.0",
"@types/react-native": "^0.64.13",
"camelize": "^1.0.0",
"react-native": "^0.71.6",
"rollup": "^2.79.0",
"rollup-plugin-ts": "^3.0.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-typescript2": "^0.35.0",
"rollup-plugin-visualizer": "^4.0.2",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@tarojs/components": ">=3",
"@tarojs/react": ">=3",
"@tarojs/taro": ">=3",
"react": ">=16.13.0",
"react-dom": ">=16.13.0",
"react-native": ">=0.62.0",
"@tarojs/plugin-platform-alipay": ">=3",
"@tarojs/plugin-platform-h5": ">=3",
"@tarojs/plugin-platform-jd": ">=3",
"@tarojs/plugin-platform-qq": ">=3",
"@tarojs/plugin-platform-swan": ">=3",
"@tarojs/plugin-platform-tt": ">=3",
"@tarojs/plugin-platform-weapp": ">=3",
"@tarojs/taro-rn": ">=3"
},
"gitHead": "c33cc7fbb734f0dbdd6e305dda1bc8300e5adbe2"
}