-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.2 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@skarab/ts-pojo-error",
"version": "0.0.0-development",
"description": "🔥 Type safe pojo error will help you to easily create typed and serializable error.",
"author": {
"name": "skarab42",
"email": "contact@skarab42.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/skarab42/ts-pojo-error.git"
},
"homepage": "https://github.com/skarab42/ts-pojo-error",
"bugs": "https://github.com/skarab42/ts-pojo-error/issues",
"funding": "https://github.com/sponsors/skarab42",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"up-hooks": "npx simple-git-hooks",
"prepare": "pnpm up-hooks",
"build": "tsup",
"dev": "tsup --watch",
"test": "tsc --noEmit && vitest run",
"test-watch": "vitest watch",
"test-coverage": "tsc --noEmit && vitest run --coverage",
"format": "prettier --write ./**/*{.js,.ts,.json,.md} --ignore-path .gitignore",
"lint": "eslint --ext \".js,.ts\" --max-warnings=0 --ignore-path .gitignore .",
"lint-fix": "pnpm lint --fix",
"semantic-release": "semantic-release --branches main"
},
"engines": {
"node": ">=12",
"pnpm": ">=6"
},
"packageManager": "pnpm@6.32.4",
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"c8": "^7.11.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-prettier": "^4.0.0",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1",
"semantic-release": "^19.0.2",
"simple-git-hooks": "^2.7.0",
"tsup": "^5.12.1",
"typescript": "^4.6.3",
"vitest": "^0.8.1"
},
"peerDependencies": {
"typescript": "^4.6.3"
},
"keywords": [
"typed",
"pojo",
"error",
"exception",
"serializable",
"typescript",
"type-safe",
"types",
"json"
]
}