-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.06 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
{
"name": "@daotl/ts-lib-starter",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@8.9.2",
"description": "TypeScript Library Starter for DAOT projects",
"author": "Nex Zhu <hitnexup@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/daotl/ts-lib-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/daotl/ts-lib-starter.git"
},
"bugs": {
"url": "https://github.com/daotl/ts-lib-starter/issues"
},
"keywords": [
"TypeScript",
"library"
],
"exports": {
".": {
"import": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.cts"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/**/*.ts && tsc-alias && gcp './dist/**/*.d.ts' {p}{n}.cts",
"test": "jest",
"lint": "biome format . && biome check .",
"lint:fix": "biome format --write . && biome check --apply .",
"gen-biome-json": "gen-biome-json",
"pub": "npm run lint && npm run test && npm run build && npm publish --access public"
},
"config": {
"commitizen": {
"path": "commitiquette"
}
},
"resolutions": {
"load-tsconfig": "^0.2.5"
},
"devDependencies": {
"@anatine/esbuild-decorators": "^0.2.19",
"@biomejs/biome": "^1.3.1",
"@commitlint/cli": "^18.1.0",
"@commitlint/config-conventional": "^18.1.0",
"@daotl/biome-config": "0.0.1",
"@swc/core": "^1.3.95",
"@tsconfig/esm": "^1.0.5",
"@tsconfig/node20": "^20.1.2",
"@tsconfig/strictest": "^2.0.2",
"@types/jest": "29.5.6",
"@types/node": "^20.8.9",
"commitiquette": "^1.2.1",
"commitizen": "^4.3.0",
"esbuild": "^0.19.5",
"glops": "^0.0.4",
"jest": "^29.7.0",
"lefthook": "^1.5.2",
"pnpm": "^8.9.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}