-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.52 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
{
"name": "@tarojsx/hooks",
"version": "0.15.0",
"description": "Taro3 hooks",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "colder",
"license": "MIT",
"keywords": [
"taro",
"taro3",
"hooks",
"react",
"reactjs",
"wx",
"weixin",
"wechat",
"weapp",
"wechat-mini-program",
"javascript",
"typescript"
],
"files": [
"dist",
"docs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tarojsx/hooks.git"
},
"homepage": "https://github.com/tarojsx/hooks",
"bugs": {
"url": "https://github.com/tarojsx/hooks/issues"
},
"scripts": {
"start": "tsc -w --preserveWatchOutput",
"prebuild": "rimraf dist tsconfig.tsbuildinfo",
"build": "tsc",
"prepublishOnly": "npm run build",
"release": "np"
},
"dependencies": {
"react-use": "^15.3.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@tarojs/taro": "^3.0.0-rc.5",
"@types/react": "^16.9.38",
"np": "^6.2.4",
"rimraf": "^3.0.2",
"typescript": "^3.9.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"np": {},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"printWidth": 120
}
}