-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 862 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 862 Bytes
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
{
"name": "@ruzer/project-brain",
"version": "0.3.1",
"description": "Contexto verificable y ligero para repositorios de software.",
"type": "module",
"main": "./src/index.mjs",
"exports": {
".": "./src/index.mjs",
"./schema": "./schema/context-contract.schema.json"
},
"bin": {
"brain": "./bin/brain.mjs"
},
"files": [
"bin",
"schema",
"src",
"templates",
"CHANGELOG.md",
"LICENSE",
"README.md",
"SECURITY.md"
],
"scripts": {
"test": "node --test",
"check": "npm test && node bin/brain.mjs doctor .",
"prepack": "npm run check"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruzer/project-brain.git"
},
"keywords": [
"ai-context",
"agents",
"obsidian",
"repository"
],
"license": "MIT"
}