-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
107 lines (107 loc) · 2.39 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@tarojsx/ui",
"version": "0.31.1",
"description": "We reinvents the UI for Taro3+",
"keywords": [
"taro",
"taro3",
"ui",
"components",
"react",
"reactjs",
"wx",
"weixin",
"wechat",
"weapp",
"wechat-mini-program",
"javascript",
"typescript"
],
"homepage": "https://github.com/tarojsx/ui",
"bugs": {
"url": "https://github.com/tarojsx/ui/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tarojsx/ui.git"
},
"license": "MIT",
"author": "colder",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist",
"docs",
"style",
"babel.js"
],
"scripts": {
"start": "tsc -w --preserveWatchOutput",
"prebuild": "del dist/* tsconfig.tsbuildinfo",
"build": "tsc",
"docs": "typedoc",
"prepublishOnly": "npm run build",
"release": "np"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -x @commitlint/config-conventional -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,json,jsx,ts,tsx,md,html,css,scss}": "prettier --write"
},
"browserslist": {
"production": [
"last 3 versions",
"Android >= 4.1",
"ios >= 8"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true
},
"dependencies": {
"@tarojsx/history": "^0.32.0",
"@tarojsx/hooks": "^0.15.0",
"tslib": "^2.2.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@tarojs/components": "^3.2.9",
"@tarojs/taro": "^3.2.9",
"@types/classnames": "^2.3.1",
"@types/lodash": "^4.14.170",
"@types/node": "^14.17.0",
"@types/react": "^16.14.6",
"@types/react-is": "^16.7.2",
"del-cli": "^3.0.1",
"husky": "^4.3.8",
"lint-staged": "^11.0.0",
"np": "^7.5.0",
"prettier": "^2.3.0",
"prettier-plugin-jsdoc": "^0.3.22",
"prettier-plugin-packagejson": "^2.2.11",
"taro-ui": "^3.0.0-alpha.10",
"typedoc": "^0.20.36",
"typedoc-plugin-markdown": "^3.8.1",
"typescript": "^4.2.4"
},
"peerDependencies": {
"taro-ui": "*"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"np": {}
}