-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.83 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.83 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "ideation-board",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "A GPU-accelerated ideation board: drop images, video, audio, notes and files, then apply effects at speed.",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build && node scripts/build-sw.mjs",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test:smoke": "node test/smoke.mjs",
"test:aspect": "node test/aspect.mjs",
"test:effects": "node test/effects.mjs",
"test:help": "node test/help.mjs",
"test:findall": "node test/findall.mjs",
"test:sendable": "node test/sendable.mjs",
"test:undoboards": "node test/undoboards.mjs",
"test:undelete": "node test/undelete.mjs",
"test:nospace": "node test/nospace.mjs",
"test:mirror": "node test/mirror.mjs",
"test:context": "node test/context.mjs",
"test:ahead": "node test/ahead.mjs",
"test:ascii": "node test/ascii.mjs",
"test:png": "node test/png.mjs",
"test:load": "node test/load.mjs",
"bench": "node test/bench.mjs",
"test:video": "node test/video.mjs",
"test:urlvideo": "node test/urlvideo.mjs",
"test:ui": "node test/ui.mjs",
"test:depth": "node test/depth.mjs",
"test:sections": "node test/sections.mjs",
"test:type": "node test/type.mjs",
"test:boards": "node test/boards.mjs",
"test:wires": "node test/wires.mjs",
"test:notes": "node test/notes.mjs",
"test:transfer": "node test/transfer.mjs",
"test:arrange": "node test/arrange.mjs",
"test:touch": "node test/touch.mjs",
"test:menu": "node test/menu.mjs",
"test:search": "node test/search.mjs",
"test:looks": "node test/looks.mjs",
"test:palette": "node test/palette.mjs",
"test:present": "node test/present.mjs",
"test:decide": "node test/decide.mjs",
"test:fit": "node test/fit.mjs",
"test:drop": "node test/drop.mjs",
"test:tabs": "node test/tabs.mjs",
"test:curate": "node test/curate.mjs",
"test:compare": "node test/compare.mjs",
"test:draw": "node test/draw.mjs",
"test:mcp": "node test/mcp.mjs",
"test:moving": "node test/moving.mjs",
"test:embed": "node test/embed.mjs",
"test:offline": "node test/offline.mjs",
"test:reclaim": "node test/reclaim.mjs",
"test:manyboards": "node test/manyboards.mjs",
"test:big": "node test/big.mjs",
"test:pdf": "node test/pdf.mjs",
"test:audio": "node test/audio.mjs",
"test:design": "node test/design.mjs",
"test:model": "node test/model.mjs",
"test:sketch": "node test/sketch.mjs",
"test:sound": "node test/sound.mjs",
"test:finish": "node test/finish.mjs",
"test:plate": "node test/plate.mjs",
"test:dialogs": "node test/dialogs.mjs",
"test:framing": "node test/framing.mjs",
"test:layer": "node test/layer.mjs",
"test:vary": "node test/vary.mjs",
"test:pair": "node test/pair.mjs",
"test:repeat": "node test/repeat.mjs",
"test:stacked": "node test/stacked.mjs",
"test:poster": "node test/poster.mjs",
"test:urlimage": "node test/urlimage.mjs",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:browser": "node scripts/browser-tests.mjs",
"test": "npm run typecheck && npm run test:unit",
"test:all": "npm run typecheck && npm run test:unit && npm run build && npm run test:browser",
"test:access": "node test/access.mjs"
},
"dependencies": {
"pdfjs-dist": "^6.3.289",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"three": "^0.169.0"
},
"devDependencies": {
"@types/node": "^26.3.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/three": "^0.169.0",
"@vitejs/plugin-react": "^6.1.1",
"onnxruntime-common": "^1.20.1",
"playwright": "^1.62.1",
"typescript": "^5.6.3",
"vite": "^8.2.2",
"vitest": "^5.0.0"
}
}