-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.04 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
{
"name": "@zoldytech/javascript",
"type": "module",
"version": "0.1.5",
"description": "Zoldytech's JavaScript/TypeScript standards: SonarQube-compatible ESLint presets (Next.js, NestJS, React+Vite, plain JS/TS) plus shared Prettier and tsconfig configs.",
"license": "MIT",
"homepage": "https://github.com/Zoldytech/javascript#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Zoldytech/javascript.git"
},
"bugs": {
"url": "https://github.com/Zoldytech/javascript/issues"
},
"publishConfig": {
"access": "public"
},
"prettier": "./prettier/prettierrc.json",
"exports": {
"./eslint": "./eslint/index.js",
"./eslint/base": "./eslint/base.js",
"./eslint/react": "./eslint/react.js",
"./eslint/react-native": "./eslint/react-native.js",
"./eslint/next": "./eslint/next.js",
"./eslint/nest": "./eslint/nest.js",
"./prettier": "./prettier/prettierrc.json",
"./tsconfig/base.json": "./tsconfig/base.json",
"./tsconfig/react.json": "./tsconfig/react.json",
"./tsconfig/react-native.json": "./tsconfig/react-native.json",
"./tsconfig/next.json": "./tsconfig/next.json",
"./tsconfig/nest.json": "./tsconfig/nest.json",
"./package.json": "./package.json"
},
"files": [
"eslint",
"prettier",
"tsconfig"
],
"engines": {
"node": "^22.13.0 || >=24"
},
"scripts": {
"lint": "eslint .",
"test": "node --test test/*.test.js",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"peerDependencies": {
"eslint": ">=10.4",
"typescript": ">=5"
},
"dependencies": {
"@antfu/eslint-config": "^9.1.0",
"@eslint-react/eslint-plugin": "^5.14.5",
"@next/eslint-plugin-next": "^16.2.10",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"eslint-plugin-sonarjs": "4.1.0",
"eslint-plugin-tsdoc": "^0.5.2"
},
"devDependencies": {
"eslint": "^10.7.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
}
}