-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 1.98 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
{
"name": "@tarojs/plugin-platform-xhs",
"version": "1.2.1",
"description": "小红书小程序平台插件",
"contributors": [
"LuMeiLing",
"HongXin"
],
"homepage": "https://github.com/NervJS/taro-plugin-platform-xhs",
"license": "MIT",
"main": "index.js",
"keywords": [
"taro"
],
"files": [
"index.js",
"dist",
"types"
],
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/NervJS/taro-plugin-platform-xhs.git"
},
"scripts": {
"prepare": "husky",
"build": "rollup -c",
"dev": "NODE_ENV=development rollup -c -w",
"version": "npm run build",
"lint": "yarn eslint . --fix"
},
"bugs": {
"url": "https://github.com/NervJS/taro-plugin-platform-xhs/issues"
},
"peerDependencies": {
"@tarojs/components": "^3.6.25",
"@tarojs/service": "^3.6.25",
"@tarojs/shared": "^3.6.25"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-json": "^4.1.0",
"@tarojs/components": "^3.6.25",
"@tarojs/service": "^3.6.25",
"@tarojs/shared": "^3.6.25",
"@types/fs-extra": "^11.0.4",
"@types/node": "^18.7.9",
"@types/webpack": "^5.28.1",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "8.12.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-standard": "^5.0.0",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.3.0",
"rollup": "^2.29.0",
"rollup-plugin-typescript2": "^0.27.3",
"typescript": "^4.0.3",
"webpack": "5.78.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
}
}