generated from nihalgonsalves/node-typescript-eslint-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.64 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": "esbuild-plugin-browserslist",
"description": "Configure esbuild's target based on a browserslist query",
"version": "0.15.0",
"author": "Nihal Gonsalves <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/nihalgonsalves/esbuild-plugin-browserslist.git"
},
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"scripts": {
"typecheck": "tsc",
"build": "rm -rf dist && tsc --project tsconfig.build.json",
"test": "vitest",
"lint": "eslint",
"format": "prettier . --write",
"format:check": "prettier . --check",
"prepublishOnly": "yarn build && yarn lint && yarn test"
},
"peerDependencies": {
"browserslist": "^4.21.8",
"esbuild": "~0.24.0"
},
"dependencies": {
"debug": "^4.3.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/compat": "^1.2.2",
"@nihalgonsalves/esconfig": "^0.10.14",
"@types/debug": "^4.1.12",
"@types/node": "18",
"@vitest/coverage-v8": "^2.1.4",
"@vitest/ui": "^2.1.4",
"browserslist": "^4.24.2",
"esbuild": "~0.24.0",
"eslint": "^9.14.0",
"eslint-plugin-vitest": "^0.5.4",
"knip": "^5.36.7",
"lefthook": "^1.8.2",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vitest": "^2.1.4"
},
"packageManager": "[email protected]+sha512.341db9396b6e289fecc30cd7ab3af65060e05ebff4b3b47547b278b9e67b08f485ecd8c79006b405446262142c7a38154445ef7f17c1d5d1de7d90bf9ce7054d"
}