-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.09 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
{
"name": "template",
"type": "module",
"version": "0.0.0",
"description": "",
"author": "seayu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sea-yu/pkg-name.git"
},
"bugs": "https://github.com/sea-yu/pkg-name/issues",
"keywords": [],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "tsup",
"dev": "nodemon --inspect",
"run": "tsx src/index.ts",
"test": "vitest",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^2.16.0",
"@types/node": "^20.12.7",
"bumpp": "^9.4.0",
"eslint": "8",
"nodemon": "^3.1.0",
"tsup": "^8.0.2",
"tsx": "^4.7.3",
"typescript": "^5.4.5",
"vitest": "^1.5.2"
}
}