-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.94 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.94 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
70
71
72
{
"name": "von",
"version": "1.0.1",
"description": "Von (or vonNeumarkt) is a suite of AI enriched tools for helping academic researchers",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:backend": "jest tests/backend",
"test:frontend": "jest tests/frontend --passWithNoTests",
"lint:frontend:static": "node scripts/lint_frontend_static.cjs"
},
"jest": {
"testEnvironment": "jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Strong-AI-Lab/Von.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Strong-AI-Lab/Von/issues"
},
"homepage": "https://github.com/Strong-AI-Lab/Von#readme",
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^30.0.0",
"@types/node": "^20.3.1",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"babel-jest": "^30.3.0",
"eslint": "^10.2.0",
"globals": "^17.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"pyright": "^1.1.405",
"ts-jest": "^29.4.9",
"typescript": "^5.1.3"
},
"overrides": {
"flatted": "3.4.2",
"babel-plugin-istanbul": "^8.0.0",
"jsdom": "^29.0.0"
},
"contributes": {
"models": [
{
"id": "von-private-vontology-provider",
"path": "./src/backend/mcp_server/vontology_mcp.json",
"requestHandler": {
"url": "http://127.0.0.1:5000",
"command": "von-mcp-server.start"
}
}
]
}
}