-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.61 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.61 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
{
"name": "@winner-fed/cloud-utils",
"description": "A collection of utils by winner fed",
"version": "2.0.11",
"type": "module",
"author": {
"name": "winner-fed",
"email": "cloudbroker@163.com"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./*": {
"import": {
"types": "./dist/*.d.ts",
"default": "./dist/esm/*.js"
},
"require": {
"types": "./dist/*.d.ts",
"default": "./dist/cjs/*.js"
}
},
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"rslib",
"cloud-utils",
"utils",
"lib"
],
"scripts": {
"build": "node generateExports.cjs && rslib build && rm -rf dist/temp",
"dev": "node generateExports.cjs && rslib build --watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"docs:dev": "rspress dev",
"docs:build": "rspress build",
"preview": "rspress preview",
"docs:deploy": "gh-pages -d doc_build",
"test": "vitest run --silent",
"test:dev": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"release": "pnpm build && bumpp --commit --push --tag",
"prepare": "pnpm build && simple-git-hooks",
"lint:package": "publint",
"type-check": "tsc --noEmit"
},
"simple-git-hooks": {
"pre-commit": "npm run type-check && npm test"
},
"dependencies": {
"decimal.js": "10.6.0",
"idcard": "4.2.0"
},
"devDependencies": {
"@rslib/core": "^0.15.0",
"@rspress/plugin-typedoc": "^1.45.6",
"@types/glob": "^9.0.0",
"@vitest/coverage-v8": "^3.0.0",
"bumpp": "^10.2.0",
"chalk": "^5.4.1",
"gh-pages": "^6.3.0",
"glob": "^11.0.3",
"inquirer": "^12.7.0",
"prettier": "^3.5.2",
"publint": "^0.3.12",
"rspress": "^1.45.6",
"rspress-plugin-sitemap": "^1.2.0",
"simple-git-hooks": "^2.9.0",
"typescript": "5.1.6",
"vitest": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/winjs-dev/cloud-utils.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"resolutions": {
"esbuild": "^0.25.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"core-js"
]
},
"license": "MIT",
"sideEffects": [
"src/.internal/ua-parser.js"
]
}