-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.7 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.7 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
{
"name": "@virtualian/marr",
"version": "3.6.0",
"description": "MARR (Making Agents Really Reliable) - AI agent configuration system for consistent project context and standards",
"type": "module",
"bin": {
"marr": "./dist/index.js"
},
"scripts": {
"build": "tsc && npm pack --pack-destination tests/",
"dev": "tsc --watch",
"test": "node --test dist/**/*.test.js",
"lint": "eslint --no-warn-ignored src/**/*.ts",
"check-bin": "node scripts/check-binary-name.js",
"prepack": "npm run check-bin && tsc",
"prepublishOnly": "npm run check-bin && npm run build && npm test",
"reinstall": "npm run build && npm install -g ."
},
"keywords": [
"ai",
"agent",
"claude",
"configuration",
"cli",
"marr",
"development",
"standards",
"project-setup"
],
"author": "Ian Marr <virtualian@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/virtualian/marr.git"
},
"bugs": {
"url": "https://github.com/virtualian/marr/issues"
},
"homepage": "https://github.com/virtualian/marr#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^12.1.0",
"gray-matter": "^4.0.3",
"yaml": "^2.6.1",
"zod": "^4.1.13"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"typescript": "^5.7.2"
},
"overrides": {
"brace-expansion": "^5.0.5"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.js.map",
"dist/**/*.d.ts.map",
"!dist/**/*.test.*",
"resources/",
"README.md",
"LICENSE"
]
}