-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.24 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.24 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
{
"name": "rulix",
"version": "0.2.0",
"description": "One ruleset. Every AI coding tool.",
"type": "module",
"bin": {
"rulix": "./dist/cli/index.js"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielcinome/rulix.git"
},
"keywords": [
"ai",
"coding-rules",
"cursor",
"claude",
"agents-md",
"cli"
],
"author": "Daniel Chinome",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielcinome/rulix/issues"
},
"homepage": "https://github.com/danielcinome/rulix#readme",
"engines": {
"node": ">=22"
},
"dependencies": {
"picomatch": "^4.0.3"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@changesets/cli": "^2.29.8",
"@types/node": "^25.2.1",
"@types/picomatch": "^4.0.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}