-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.4 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
{
"name": "zwkang-test-auto-release",
"version": "0.0.1-beta.2",
"packageManager": "[email protected]",
"description": "> description:",
"publishConfig": {
"access": "public"
},
"type": "module",
"author": {
"name": "zwkang",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zwkang/pkg-name.git"
},
"bugs": "https://github.com/zwkang/pkg-name/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"lint": "eslint --cache .",
"test": "vitest run",
"build": "tsup",
"start": "tsx src/index.ts",
"release": "npm publish",
"bump:version": "bumpp",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"update:deps": "taze major -lr"
},
"devDependencies": {
"@antfu/eslint-config": "^2.13.2",
"bumpp": "^9.4.0",
"eslint": "^9.0.0",
"taze": "^0.13.3",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.4",
"vitest": "^1.4.0"
},
"license": "MIT"
}