-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.91 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.91 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
{
"name": "@solution-intelligence/graph-adapter",
"version": "0.1.0-pre",
"description": "SI/G — PolyGraph adapter, GraphLoader, three-tier-schema enforcement, DSL validator, chainblocks audit integration for Solution Intelligence v0.1.",
"author": "William Fredricks",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/wfredricks/solution-intelligence-graph-adapter.git"
},
"homepage": "https://github.com/wfredricks/solution-intelligence-graph-adapter#readme",
"bugs": {
"url": "https://github.com/wfredricks/solution-intelligence-graph-adapter/issues"
},
"keywords": [
"solution-intelligence",
"knowledge-graph",
"audit",
"provenance",
"typescript",
"graph-adapter",
"polygraph"
],
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": ["dist", "LICENSE", "README.md", "CHANGELOG.md", "SECURITY.md"],
"engines": { "node": ">=20" },
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"format": "prettier --write src tests",
"format:check": "prettier --check src tests",
"clean": "rm -rf dist coverage",
"prepublishOnly": "npm run typecheck && npm run lint && npm run test && npm run build"
},
"dependencies": {
"polygraph-db": "file:../polygraph"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^8.57.0",
"prettier": "^3.0.0",
"tsup": "^8.0.0",
"typescript": "^5.6.0",
"vitest": "^2.0.0"
}
}