-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.2 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
{
"name": "@neuroglyph/git-mind",
"version": "5.0.0",
"description": "A project knowledge graph tool built on git-warp",
"type": "module",
"license": "Apache-2.0",
"author": "James Ross <james@flyingrobots.dev>",
"repository": {
"type": "git",
"url": "https://github.com/neuroglyph/git-mind.git"
},
"bin": {
"git-mind": "bin/git-mind.js"
},
"exports": {
".": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
}
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage --exclude test/contracts.integration.test.js --exclude test/content.test.js --exclude test/version.test.js",
"lint": "eslint src/ bin/",
"format": "prettier --write 'src/**/*.js' 'bin/**/*.js'"
},
"dependencies": {
"@git-stunts/git-warp": "^11.5.0",
"@git-stunts/plumbing": "^2.8.0",
"ajv": "^8.17.1",
"chalk": "^5.3.0",
"figures": "^6.0.1",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.0.0",
"globals": "^14.0.0",
"prettier": "^3.0.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=22.0.0"
}
}