-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.29 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "npm-lib-template",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@9.13.2",
"description": "icebreaker's npm-lib-template",
"author": "SonOfMagic <qq1324318532@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/sonofmagic/npm-lib-template#readme",
"repository": {
"type": "git",
"url": "https://github.com/sonofmagic/npm-lib-template.git"
},
"bugs": {
"url": "https://github.com/sonofmagic/npm-lib-template/issues"
},
"keywords": [
"npm",
"lib",
"ts",
"template"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"build:dev": "tsup --sourcemap",
"build": "tsup",
"test:dev": "vitest",
"test": "vitest run",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"init:rename": "tsx scripts/init/rename.ts",
"init:bin": "tsx scripts/init/bin.ts",
"clean": "tsx scripts/clean.ts",
"ls:pack": "npm pack --dry-run",
"semantic-release": "semantic-release",
"prepare": "husky"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@icebreakers/eslint-config": "^0.7.3",
"@tsconfig/recommended": "^1.0.8",
"@types/fs-extra": "^11.0.4",
"@types/klaw": "^3.0.6",
"@types/lodash": "^4.17.13",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.5",
"cross-env": "^7.0.3",
"defu": "^6.1.4",
"del": "^8.0.0",
"eslint": "9.15.0",
"fs-extra": "^11.2.0",
"husky": "^9.1.7",
"klaw": "^4.1.0",
"lint-staged": "^15.2.9",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"pathe": "^1.1.2",
"semantic-release": "^24.2.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
}
}