-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.44 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.44 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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@noneforge/eslint-config-angular",
"version": "0.2.7",
"description": "Angular ESLint configuration with TypeScript, component rules, and accessibility",
"keywords": [
"eslint",
"eslintconfig",
"eslint-config",
"angular",
"angular20",
"signals",
"effects",
"typescript",
"frontend",
"components",
"templates",
"accessibility",
"a11y",
"angular-eslint",
"standalone-components",
"control-flow",
"stylistic",
"eslint-css",
"stylelint",
"sass",
"scss",
"css",
"prettier",
"flat-config",
"eslint9",
"noneforge",
"onpush",
"reactive",
"zoneless"
],
"author": "noneforge",
"license": "MIT",
"homepage": "https://github.com/noneforge/eslint-config-angular#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/noneforge/eslint-config-angular.git"
},
"bugs": {
"url": "https://github.com/noneforge/eslint-config-angular/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.19.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": {
"@noneforge/eslint-config": "^0.2.8",
"angular-eslint": "^20.2.0",
"globals": "^16.3.0"
},
"peerDependencies": {
"@angular/compiler": ">=20.0.0",
"eslint": ">=9.22.0",
"rxjs": ">=7.4.0",
"typescript": ">=5.9.0"
},
"devDependencies": {
"@angular/core": "^20.2.4",
"@eslint/css": "^0.11.0",
"@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/"
}
}