-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.22 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.22 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
{
"name": "@luna-park/http-errors",
"version": "1.0.0",
"private": false,
"description": "HTTP errors",
"keywords": [
"http",
"error"
],
"homepage": "https://luna-park.app",
"repository": {
"type": "git",
"url": "https://github.com/lunapark/http-errors"
},
"author": {
"name": "Luna Park",
"url": "https://luna-park.app"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"module": "./dist/index.js",
"files": [
"dist/**"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch"
},
"devDependencies": {
"@luna-park/eslint-config": "^1.2.1",
"@types/node": "^25.3.0",
"eslint": "^10.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"unplugin-dts": "1.0.0-beta.6",
"vite": "npm:rolldown-vite@7.3.1"
},
"pnpm": {
"overrides": {
"vite": "npm:rolldown-vite@7.3.1"
},
"onlyBuiltDependencies": [
"unrs-resolver"
]
}
}