-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.55 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.55 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
59
60
61
{
"name": "@the-minimal/error",
"type": "module",
"version": "0.1.2",
"license": "MIT",
"author": "Miroslav Vršecký <yamiteru@icloud.com>",
"description": "Minimalist TypeScript error library with great focus on size and performance",
"source": "src/index.ts",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*.js",
"dist/*.map",
"dist/*.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/the-minimal/error.git",
"directory": "src"
},
"keywords": [
"error",
"exception",
"panic",
"javascript",
"typescript"
],
"homepage": "https://github.com/the-minimal/error",
"bugs": {
"url": "https://github.com/the-minimal/error/issues"
},
"scripts": {
"prepublishOnly": "bun run check && bun run build && bun run test",
"release": "release-it",
"build": "bun run build:clean && bun run build:code && bun run build:types && bun run build:stats",
"build:code": "bun run scripts/build.ts",
"build:types": "tsup",
"build:stats": "bun run scripts/stats.ts",
"build:clean": "rm -rf build",
"test": "vitest run",
"test:watch": "vitest",
"check": "bunx @biomejs/biome check --apply ./"
},
"devDependencies": {
"@biomejs/biome": "1.6.4",
"@types/bun": "latest",
"release-it": "17.2.0",
"tsup": "8.0.2",
"vitest": "1.5.0"
},
"peerDependencies": {
"typescript": "5.4.5"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@the-minimal/types": "0.0.1"
}
}