-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.72 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.72 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": "@fedify/lint",
"version": "2.2.0",
"description": "Fedify linting rules and plugins",
"keywords": [
"Fedify",
"ActivityPub",
"Fediverse",
"Lint",
"ESLint",
"ESLint Plugin"
],
"author": {
"name": "Chanhaeng Lee",
"email": "2chanhaeng@gmail.com",
"url": "https://chomu.dev/"
},
"homepage": "https://fedify.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/fedify-dev/fedify.git",
"directory": "packages/lint"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fedify-dev/fedify/issues"
},
"funding": [
"https://opencollective.com/fedify",
"https://github.com/sponsors/dahlia"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist/",
"deno.json",
"package.json"
],
"peerDependencies": {
"@fedify/fedify": "workspace:^",
"eslint": ">=9.0.0"
},
"peerDependenciesMeta": {
"eslint": {
"optional": true
}
},
"dependencies": {
"@fxts/core": "catalog:",
"@typescript-eslint/parser": "^8.49.0",
"@typescript-eslint/utils": "^8.0.0"
},
"devDependencies": {
"@types/eslint": "^9.0.0",
"@types/estree": "^1.0.8",
"eslint": "^9.0.0",
"tsdown": "catalog:",
"typescript": "catalog:"
},
"scripts": {
"build:self": "tsdown",
"build": "pnpm --filter @fedify/lint... run build:self",
"prepack": "pnpm build",
"prepublish": "pnpm build",
"test": "node --experimental-transform-types --test 'src/tests/**/*.test.ts'"
}
}