-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.35 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
{
"name": "@xkcm/better-errors",
"version": "2.2.1",
"description": "Better errors with TypeScript",
"author": "xkcm",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/xkcm/better-errors.git"
},
"bugs": {
"url": "https://github.com/xkcm/better-errors/issues"
},
"main": "lib/cjs/index.js",
"module": "lib/es6/index.js",
"types": "lib/es6/index.d.ts",
"files": [
"lib/**/*",
"README.md"
],
"exports": {
".": {
"import": "./lib/es6/index.js",
"require": "./lib/cjs/index.js",
"types": "./lib/types/index.d.ts"
}
},
"scripts": {
"test": "vitest",
"lint": "eslint ./src ./tests --ext .ts",
"build": "rm -rf ./lib && tsc -p tsconfig.build.es6.json && tsc -p tsconfig.build.cjs.json && tsc -p tsconfig.build.types.json"
},
"keywords": [
"error",
"handling",
"typescript",
"javascript",
"ts",
"js"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"typescript": "^5.1.6",
"vitest": "^0.32.4"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"publishConfig": {
"access": "public"
}
}