-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.18 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
{
"name": "@flowgo/editor",
"version": "0.1.2",
"description": "TypeScript editor + .flowgo helpers for the flowgo mind-map tool. Built as a single self-contained index.html by the public flowgo binary; also consumable as ESM modules by downstream projects.",
"type": "module",
"packageManager": "pnpm@10.34.0+sha512.8736169c56fdb6e26afb5d7e2bd5f4c99cc299620d8bdc288cb354e6dd0936bd4ea62276d1a6b2de4b6e971a00a530e0e08bbeeda63da5d820118d3d7e21ff69",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/lassediercks/flowgo.git"
},
"files": [
"src",
"vite.config.ts",
"tsconfig.json"
],
"main": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./editor": "./src/editor/main.ts",
"./editor/*": "./src/editor/*",
"./collab": "./src/editor/collab-api.ts"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.4.0",
"vite": "^8.0.10",
"vite-plugin-singlefile": "^2.3.3",
"vitest": "^1.4.0"
}
}