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