-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.5 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
{
"name": "@sieutoc/easypanel",
"version": "0.3.1",
"license": "MIT",
"description": "EasyPanel SDK",
"repository": {
"type": "git",
"url": "https://github.com/websitesieutoc/easypanel.git"
},
"keywords": [
"easypanel",
"typescript easypanel",
"easypanel api",
"easypanel-sdk"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"packageManager": "[email protected]",
"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"
}
}