-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.92 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.92 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
{
"name": "eslint-plugin-allowed-dependencies",
"description": "ESLint plugin Allowed Dependencies",
"version": "2.2.0",
"type": "module",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RobinTail/allowed-dependencies.git"
},
"homepage": "https://github.com/RobinTail/allowed-dependencies",
"bugs": "https://github.com/RobinTail/allowed-dependencies/issues",
"funding": "https://github.com/sponsors/RobinTail",
"author": {
"name": "Anna Bocharova",
"url": "https://robintail.cz"
},
"files": [
"dist",
"*.md"
],
"scripts": {
"build": "bun run --bun tsdown --config-loader native",
"lint": "bun run biome check",
"pretest": "tsc --noEmit",
"test": "bun test src",
"mdfix": "bunx --bun prettier *.md --write",
"version": "bun run tools/version.ts",
"prepublishOnly": "bun run lint && bun run test && bun run build"
},
"dependencies": {
"ramda": "^0.32.0"
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.2",
"@biomejs/biome": "2.4.15",
"@tsconfig/bun": "^1.0.9",
"@types/bun": "^1.3.0",
"@types/ramda": "^0.31.1",
"@typescript-eslint/rule-tester": "^8.56.0",
"eslint": "^10.0.0",
"json-schema-to-ts": "^3.1.1",
"tsdown": "^0.22.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.56.0"
},
"peerDependencies": {
"eslint": "^9.0.0 || ^10.0.0",
"typescript-eslint": "^8.0.0"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || ^24.0.0 || ^26.0.0"
},
"keywords": [
"modules",
"eslint",
"eslint-plugin",
"import",
"eslint-rules",
"dependencies",
"eslintplugin",
"restriction",
"external-dependency",
"exhaustive",
"extraneous"
]
}