-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 2.68 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@ryanuo/utils",
"type": "module",
"version": "1.4.4",
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@9.5.0",
"description": "提供多种实用工具函数,涵盖算法、浏览器操作、网络请求等多个领域",
"author": "ryanuo <ryanuo@aliyun.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/ryanuo",
"homepage": "https://github.com/ryanuo/utils#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ryanuo/utils.git"
},
"bugs": "https://github.com/ryanuo/utils/issues",
"keywords": [
"ts-utils",
"utils",
"vitepress",
"AI",
"algorithms",
"browser",
"node",
"network",
"finance",
"graphics"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": {
"types": "./dist/types/*/index.d.ts",
"import": "./dist/*/index.mjs",
"require": "./dist/*/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "pnpm run build",
"release": "bumpp && pnpm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks",
"fix": "npx eslint --fix .",
"readme": "esno script/readme.ts"
},
"dependencies": {
"dayjs": "catalog:build",
"decimal.js": "catalog:build",
"query-string": "catalog:build"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:dev",
"@ryanuo/utils": "workspace:*",
"@types/node": "catalog:dev",
"@vitest/coverage-v8": "catalog:dev",
"bumpp": "catalog:dev",
"eslint": "catalog:dev",
"esno": "catalog:dev",
"happy-dom": "catalog:test",
"lint-staged": "catalog:dev",
"simple-git-hooks": "catalog:dev",
"typescript": "catalog:dev",
"unbuild": "catalog:dev",
"vite": "catalog:dev",
"vitest": "catalog:dev"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"changelogithub": {
"types": {
"feat": {
"title": "🚀 Features"
},
"fix": {
"title": "🐞 Bug Fixes"
},
"perf": {
"title": "🏎 Performance"
},
"refactor": {
"title": "♻️ Refactors"
},
"docs": {
"title": "📚 Documentation"
},
"build": {
"title": "📦 Build"
}
}
}
}