-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "@jiakun-zhao/pkg-name",
"type": "module",
"version": "0.0.0",
"description": "",
"author": "Jiakun Zhao <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/jiakun-zhao/pkg-name#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jiakun-zhao/pkg-name.git"
},
"bugs": {
"url": "https://github.com/jiakun-zhao/pkg-name/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "tsx src/index.ts",
"prepublishOnly": "pnpm build",
"release": "bumpp && pnpm publish && npx cnpm sync @jiakun-zhao/pkg-name",
"stub": "unbuild --stub",
"test": "vitest -u"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@types/node": "^22.10.6",
"bumpp": "^9.10.0",
"eslint": "^9.18.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"unbuild": "^3.3.1",
"vitest": "^2.1.8"
}
}