-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.95 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.95 KB
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
{
"name": "@shilong/utils",
"version": "0.0.9",
"description": "Common utils and configuration",
"packageManager": "pnpm@10.6.3",
"keywords": [
"utils",
"httpstatus"
],
"type": "module",
"license": "MIT",
"homepage": "https://github.com/Onlylonger/utils#readme",
"bugs": {
"url": "https://github.com/Onlylonger/utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Onlylonger/utils.git"
},
"author": "Barry <onlylonger@outlook.com>",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./configuration": {
"import": "./dist/configuration/index.js",
"types": "./dist/configuration/index.d.ts"
},
"./react": {
"import": "./dist/react/index.js",
"types": "./dist/react/index.d.ts"
},
"./js": {
"import": "./dist/js/index.js",
"types": "./dist/js/index.d.ts"
},
"./browser": {
"import": "./dist/browser/index.js",
"types": "./dist/browser/index.d.ts"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "pnpm build && bumpp && npm publish",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.15.17",
"@types/react": "^19.1.9",
"bumpp": "^10.1.0",
"react": "^19.1.1",
"tsdown": "^0.13.1",
"typescript": "^5.8.3",
"vitepress": "^1.6.3",
"vitest": "^3.1.3"
},
"dependencies": {
"ahooks": "^3.9.0",
"deepmerge-ts": "^7.1.5",
"lodash-es": "^4.17.21",
"react-fast-compare": "^3.2.2"
}
}