-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathpackage.json
69 lines (69 loc) · 1.64 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
{
"name": "yidash",
"type": "module",
"version": "1.12.1",
"private": false,
"license": "MIT",
"description": "yidash(易大师)一万个JavaScript实用方法库",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"author": "chensuiyi <[email protected]>",
"homepage": "https://yidash.yicode.tech",
"repository": {
"type": "git",
"url": "https://github.com/chenbimo/yidash"
},
"keywords": [
"lodash",
"utils",
"helper",
"help"
],
"exports": {
".": "./lib.js",
"./node": "./libNode.js",
"./browser": "./libBrowser.js"
},
"files": [
"config/",
"lib/",
"libNode/",
"libBrowser/",
"index.js",
"LICENSE",
"package.json",
"README.md",
"lib.js",
"libNode.js",
"libBrowser.js"
],
"scripts": {
"gen": "node generate.js",
"docs": "del-cli docs & jsdoc -c jsdoc.json"
},
"dependencies": {
"date-fns": "^4.1.0",
"es-toolkit": "^1.27.0"
},
"devDependencies": {
"colorette": "^2.0.20",
"del-cli": "^6.0.0",
"docdash-extended-chensuiyi": "^1.1.1",
"fs-extra": "^11.2.0",
"jsdoc": "^4.0.4",
"lint-staged": "^15.2.10",
"log-symbols": "^7.0.0",
"prettier": "^3.4.1",
"simple-git-hooks": "^2.11.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
]
}
}