-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "@danielwaltz/eslint-config",
"version": "0.0.11",
"packageManager": "pnpm@9.15.3",
"type": "module",
"keywords": [
"eslint-config"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/danielwaltz/eslint-config.git"
},
"author": "Daniel Waltz",
"files": [
"CHANGELOG.md",
"README.md",
"dist"
],
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"lint": "eslint",
"type-check": "tsc --noEmit",
"prepack": "pnpm build",
"test": "pnpm prepack && pnpm lint && pnpm type-check && pnpx publint@latest && pnpx @arethetypeswrong/cli@latest --pack --profile esm-only",
"release": "pnpm test && changelogen --release --push --publish && changelogen gh release"
},
"peerDependencies": {
"eslint": ">=9",
"prettier": ">=3"
},
"dependencies": {
"@sxzz/eslint-config": "^4.6.0",
"eslint-flat-config-utils": "^1.0.0"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/node": "~22.10.5",
"changelogen": "^0.5.7",
"typescript": "~5.7.3",
"unbuild": "^3.2.0"
}
}