-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.09 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.09 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "interbrain",
"version": "0.15.0",
"description": "An Obsidian plugin that transforms Personal Knowledge Management into Collective Knowledge Gardening, transcending the traditional Second Brain paradigm",
"main": "main.js",
"workspaces": [
"desktop",
"signaling"
],
"scripts": {
"dev": "vite",
"build": "npm run build:plugin",
"build:plugin": "vite build && npm run build-github-viewer && node scripts/assemble-plugin.mjs",
"build:plugin:dev": "vite build && node scripts/assemble-plugin.mjs",
"build:desktop": "cd desktop && npm run tauri:build",
"build:all": "npm run build:plugin && npm run build:desktop",
"build-github-viewer": "cd src/features/github-publishing/dreamsong-standalone && vite build --config vite.config.ts --outDir ../viewer-bundle",
"dev:desktop": "cd desktop && npm run tauri:dev",
"dev:signaling": "cd signaling && npm run dev",
"deploy:signaling": "cd signaling && npm run deploy",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"check-all": "npm run lint && npm run typecheck && npm run test",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:collaboration": "npx tsx src/features/social-resonance-filter/__tests__/collaboration/run-local-test.ts",
"test:collaboration:reset": "npx tsx src/features/social-resonance-filter/__tests__/collaboration/run-local-test.ts --reset"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectLiminality/InterBrain.git"
},
"keywords": [
"obsidian",
"plugin",
"knowledge-management",
"interbrain",
"dreamos"
],
"author": "Project Liminality",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/ProjectLiminality/InterBrain/issues"
},
"homepage": "https://github.com/ProjectLiminality/InterBrain#readme",
"devDependencies": {
"@eslint/js": "^9.31.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/d3-force": "^3.0.10",
"@types/d3-hierarchy": "^3.1.7",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node": "^24.0.13",
"@types/opentype.js": "^1.3.8",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.31.0",
"jsdom": "^26.1.0",
"obsidian": "^1.8.7",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"vite": "^7.0.4",
"vitest": "^3.2.4"
},
"dependencies": {
"@react-three/drei": "^10.5.0",
"@react-three/fiber": "^9.2.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/three": "^0.178.1",
"d3-force": "^3.0.0",
"d3-hierarchy": "^3.1.2",
"fluent-ffmpeg": "^2.1.3",
"framer-motion": "^12.23.26",
"fuse.js": "^7.1.0",
"jspdf": "^3.0.3",
"marked": "^16.4.1",
"opentype.js": "^1.3.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-pdf": "^10.2.0",
"sharp": "^0.34.5",
"three": "^0.178.0",
"uuid": "^11.0.5",
"zustand": "^5.0.6"
}
}