-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.58 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.58 KB
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
{
"name": "error-kid",
"version": "2.0.0",
"description": "A simple toolkit to work with custom errors. Definitely not a kid.",
"author": "Vladislav Kibenko <wolfram.deus@gmail.com>",
"homepage": "https://github.com/heyqbnk/error-kid#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/heyqbnk/error-kid.git"
},
"bugs": {
"url": "https://github.com/heyqbnk/error-kid/issues"
},
"keywords": [
"error",
"errors"
],
"license": "MIT",
"type": "module",
"sideEffects": false,
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/dts/index.d.ts",
"exports": {
".": {
"types": "./dist/dts/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.cjs"
}
},
"scripts": {
"test": "vitest --run",
"lint": "eslint src --ignore-pattern **/*.test.ts",
"lint:fix": "pnpm run lint --fix",
"typecheck": "tsc --noEmit -p tsconfig.build.json",
"build": "rimraf dist && pnpm run build:default && pnpm run build:iife",
"build:default": "vite build -c vite.config.ts",
"build:iife": "vite build -c vite.iife.config.ts",
"prepublish": "pnpm run build"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@eslint/js": "^9.11.1",
"@vitest/coverage-v8": "^2.1.2",
"@vitest/ui": "^2.1.2",
"eslint": "^9.11.1",
"rimraf": "^6.0.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.8.0",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.3",
"vitest": "^2.1.2"
}
}