-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.53 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": "esbuild-plugin-browserslist",
"version": "4.0.0",
"description": "Configure esbuild's target based on a browserslist query",
"license": "MIT",
"author": "Nihal Gonsalves <nihal@nihalgonsalves.com>",
"repository": {
"type": "git",
"url": "https://github.com/nihalgonsalves/esbuild-plugin-browserslist.git"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"publishConfig": {
"provenance": true
},
"scripts": {
"typecheck": "tsc",
"build": "rm -rf dist && tsc --project tsconfig.build.json",
"test": "vitest",
"lint": "oxlint",
"format": "oxfmt",
"format:check": "oxfmt --check",
"prepublishOnly": "node --run build && node --run lint && node --run test -- --no-watch"
},
"dependencies": {
"debug": "^4.4.3",
"zod": "^4.5.4"
},
"devDependencies": {
"@nihalgonsalves/esconfig": "^0.18.2",
"@types/debug": "^4.1.13",
"@types/node": "^22",
"@vitest/coverage-v8": "^4.1.11",
"@vitest/ui": "^4.1.11",
"browserslist": "^4.28.8",
"esbuild": "~0.28.2",
"knip": "^6.33.0",
"lefthook": "^2.1.12",
"oxfmt": "^0.65.0",
"oxlint": "^1.80.0",
"oxlint-tsgolint": "^7.0.2001",
"typescript": "^7.0.2",
"vite": "^8.2.2",
"vitest": "^4.1.11"
},
"peerDependencies": {
"browserslist": "^4.28.8",
"esbuild": "~0.28.2"
},
"engines": {
"node": "^22.12.0 || >=24.0.0"
},
"packageManager": "pnpm@11.11.0"
}