-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.07 KB
/
package.json
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
{
"name": "eslint-plugin-allowed-dependencies",
"description": "ESLint plugin Allowed Dependencies",
"version": "1.0.1",
"type": "module",
"module": "dist/index.js",
"main": "dist/index.cjs",
"types": "dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"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 tsup && attw --pack",
"lint": "bun run biome check",
"pretest": "tsc --noEmit",
"test": "bun test src",
"mdfix": "bunx --bun prettier *.md --write",
"postversion": "git push && git push --tags",
"prepublishOnly": "bun run lint && bun run test && bun run build"
},
"dependencies": {
"ramda": "^0.30.1"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@biomejs/biome": "1.9.4",
"@tsconfig/bun": "^1.0.7",
"@types/bun": "latest",
"@types/ramda": "^0.30.2",
"@types/semver": "^7.5.8",
"@typescript-eslint/rule-tester": "^8.9.0",
"eslint": "^9.12.0",
"json-schema-to-ts": "^3.1.1",
"semver": "^7.6.3",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0"
},
"peerDependencies": {
"eslint": "^9.0.0",
"typescript-eslint": "^8.0.0"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || ^22.0.0"
},
"keywords": [
"modules",
"eslint",
"eslint-plugin",
"import",
"eslint-rules",
"dependencies",
"eslintplugin",
"restriction",
"external-dependency",
"exhaustive",
"extraneous"
]
}