-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.25 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.25 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@stackvault/eslint-config-node",
"version": "0.1.0",
"description": "Node.js ESLint configuration with TypeScript, security, and performance rules",
"keywords": [
"eslint",
"eslintconfig",
"eslint-config",
"node",
"nodejs",
"typescript",
"backend",
"server",
"api",
"security",
"eslint-plugin-n",
"eslint-plugin-security",
"flat-config",
"eslint9",
"stackvault"
],
"author": "StackVault",
"license": "MIT",
"homepage": "https://github.com/stackvault/eslint-config-node#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stackvault/eslint-config-node.git"
},
"bugs": {
"url": "https://github.com/stackvault/eslint-config-node/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "shx rm -rf dist",
"prebuild": "npm run clean",
"test": "npm run build && npm run lint:self",
"lint:self": "eslint ./src --max-warnings 0",
"prepublishOnly": "npm run test",
"version": "npm run build && git add -A dist",
"release": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public"
},
"dependencies": {
"@stackvault/eslint-config-typescript": "^0.1.1",
"eslint-plugin-n": "^17.21.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unicorn": "^61.0.1",
"globals": "^16.3.0"
},
"optionalDependencies": {
"eslint-plugin-security": "^3.0.1"
},
"peerDependencies": {
"eslint": ">=9.22.0",
"typescript": ">=5.5.0"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/node": "^24.3.1",
"eslint": "^9.35.0",
"shx": "^0.4.0",
"typescript": "^5.9.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}