-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.54 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
{
"name": "eslint-plugin-code-architecture",
"version": "0.5.0",
"description": "Portable ESLint rules for vertical architecture, TigerStyle, Effect, and runtime safety",
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=20.18"
},
"main": "./plugin.js",
"exports": {
".": "./plugin.js"
},
"files": [
"plugin.js",
"rules",
"docs",
"README.md",
"PUBLISHING.md"
],
"keywords": [
"eslint",
"eslintplugin",
"architecture",
"tigerstyle",
"effect"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thorgas/eslint-plugin-code-architecture.git"
},
"bugs": {
"url": "https://github.com/thorgas/eslint-plugin-code-architecture/issues"
},
"homepage": "https://github.com/thorgas/eslint-plugin-code-architecture#readme",
"scripts": {
"check": "bun run lint && bun run test",
"lint": "eslint .",
"pack:check": "npm pack --dry-run",
"smoke:package": "node scripts/package-smoke.js",
"prepublishOnly": "bun run check",
"release:check": "node scripts/publish-package.js --dry-run",
"release:publish": "node scripts/publish-package.js --publish",
"test": "bun test",
"test:coverage": "bun test --coverage"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"eslint": ">=9 <11"
},
"dependencies": {
"minimatch": "^9.0.3"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1"
}
}