generated from productdevbookcom/ts-bundle-template
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 1.76 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
{
"name": "easypanel-sdk",
"type": "module",
"version": "0.3.1",
"packageManager": "[email protected]",
"description": "EasyPanel is Next Generation Server Control Panel",
"author": "Mehmet - [email protected]",
"license": "MIT",
"funding": "https://github.com/sponsors/productdevbook",
"homepage": "https://productdevbook.com",
"repository": {
"type": "git",
"url": "https://github.com/Easypanel-Community/easypanel.git"
},
"bugs": "https://github.com/Easypanel-Community/easypanel/issues",
"keywords": [
"easypanel",
"typescript easypanel",
"easypanel api",
"easypanel-sdk"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "pnpm run build",
"release": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"lint": "pnpm build && eslint . && pnpm typecheck",
"lint:ci": "eslint . && pnpm typecheck",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:watch": "vitest --watch",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@antfu/eslint-config": "2.1.0",
"@vitest/coverage-v8": "^0.34.6",
"bumpp": "^9.2.0",
"eslint": "^8.54.0",
"lint-staged": "^15.1.0",
"ofetch": "^1.3.3",
"simple-git-hooks": "^2.9.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm eslint . --fix"
},
"publishConfig": {
"access": "public"
}
}