-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.46 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
{
"name": "ts-lib-starter",
"version": "0.0.0",
"packageManager": "[email protected]",
"description": "My awesome typescript library",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/sxzz/ts-lib-starter#readme",
"bugs": {
"url": "https://github.com/sxzz/ts-lib-starter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sxzz/ts-lib-starter.git"
},
"author": "三咲智子 Kevin Deng <[email protected]>",
"funding": "https://github.com/sponsors/sxzz",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"format": "prettier --cache --write .",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@sxzz/eslint-config": "^4.5.1",
"@sxzz/prettier-config": "^2.0.2",
"@types/node": "^22.10.2",
"bumpp": "^9.9.2",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"tsdown": "^0.5.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18.12.0"
},
"prettier": "@sxzz/prettier-config"
}