-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.83 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.83 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
{
"name": "uscc-utils",
"version": "0.7.0",
"description": "Utils about unified social credit code | 统一社会信用代码工具方法",
"keywords": [
"parse",
"unified social credit code",
"unified social credit identifier",
"uscc",
"usci",
"validate",
"校验",
"统一社会信用代码",
"解析"
],
"homepage": "https://github.com/ntnyq/uscc-utils#readme",
"bugs": {
"url": "https://github.com/ntnyq/uscc-utils/issues"
},
"license": "MIT",
"author": {
"name": "ntnyq",
"email": "ntnyq13@gmail.com"
},
"repository": "ntnyq/uscc-utils",
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint",
"prepare": "husky",
"prepublishOnly": "pnpm run build",
"release": "run-s release:check release:version",
"release:check": "run-s lint typecheck build",
"release:version": "bumpp",
"test": "vitest",
"typecheck": "tsgo --noEmit"
},
"devDependencies": {
"@ntnyq/tsconfig": "^3.1.0",
"@types/node": "^25.6.0",
"@typescript/native-preview": "^7.0.0-dev.20260419.1",
"bumpp": "^11.0.1",
"husky": "^9.1.7",
"nano-staged": "^1.0.2",
"npm-run-all2": "^8.0.4",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"oxlint-tsgolint": "^0.21.1",
"tsdown": "^0.21.9",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
},
"nano-staged": {
"*.{js,ts,mjs,tsx}": "oxlint --fix",
"*": "oxfmt --no-error-on-unmatched-pattern"
},
"packageManager": "pnpm@10.33.0"
}