-
Notifications
You must be signed in to change notification settings - Fork 1
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": "spellweb",
"private": true,
"version": "2.0.0",
"description": "Knowledge graph explorer for the agentprivacy V5 dual-agent architecture with holographic bound integration",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "npm run build && wrangler dev",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"deploy": "npm run build && wrangler deploy"
},
"dependencies": {
"@noble/ed25519": "^3.0.1",
"d3": "^7.8.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.31.1",
"@types/d3": "^7.4.3",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.18",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2",
"vite": "^6.4.1",
"wrangler": "^4.81.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mitchuski/spellweb"
},
"keywords": [
"knowledge-graph",
"privacy",
"ai-agents",
"d3",
"react",
"visualization"
],
"author": "0xagentprivacy",
"license": "MIT"
}