-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.09 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
{
"name": "@catenarycloud/linteffect",
"description": "Biome Grit rules for declarative Effect TypeScript composition and repository-wide style consistency.",
"repository": {
"type": "git",
"url": "https://github.com/OperationalFallacy/biome-effect-linting-rules.git"
},
"bin": "./bin/linteffect.mjs",
"scripts": {
"build": "npx projen build",
"bump": "npx projen bump",
"clobber": "npx projen clobber",
"compile": "npx projen compile",
"default": "npx projen default",
"eject": "npx projen eject",
"pack:dry-run": "npx projen pack:dry-run",
"package": "npx projen package",
"post-compile": "npx projen post-compile",
"post-upgrade": "npx projen post-upgrade",
"pre-compile": "npx projen pre-compile",
"refresh:biome-grammars": "npx projen refresh:biome-grammars",
"release": "npx projen release",
"test": "npx projen test",
"unbump": "npx projen unbump",
"upgrade": "npx projen upgrade",
"projen": "npx projen"
},
"author": {
"name": "Roman Naumenko",
"email": "hi@catenary.cloud",
"organization": false
},
"devDependencies": {
"commit-and-tag-version": "^12",
"constructs": "^10.0.0",
"projen": "^0.98.34",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.1.1"
},
"dependencies": {
"@biomejs/biome": "^2.4.15"
},
"keywords": [
"agent",
"biome",
"code-style",
"effect",
"grit",
"lint",
"typescript"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"version": "0.0.6",
"packageManager": "yarn@4.6.0",
"files": [
"biome.jsonc",
"bin",
"rules/*.grit",
"configs",
"examples",
"docs",
"README.md",
"LICENSE"
],
"exports": {
".": "./configs/full.jsonc",
"./recommended": "./configs/full.jsonc",
"./core": "./configs/core.jsonc",
"./web": "./configs/web.jsonc",
"./ts-type": "./configs/ts-type.jsonc",
"./agent-guide": "./docs/linting.md",
"./package.json": "./package.json"
},
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
}