-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "@rotorsoft/act-nvim",
"type": "module",
"version": "0.0.1",
"private": true,
"description": "Neovim plugin for Act event-sourcing diagrams — browser sidecar with bidirectional navigation",
"author": {
"name": "rotorsoft",
"email": "rotorsoft@outlook.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Rotorsoft/act-nvim.git"
},
"engines": {
"node": ">=22.18.0",
"pnpm": ">=10.32.1"
},
"packageManager": "pnpm@10.32.1",
"scripts": {
"clean": "rm -rf dist",
"build:server": "tsup",
"build:client": "vite build",
"build": "pnpm build:server && pnpm build:client",
"dev": "tsx watch src/server/relay.ts",
"start": "node dist/server/relay.cjs",
"nvim": "node scripts/nvim.mjs",
"setup": "node scripts/setup.mjs",
"setup:unlink": "node scripts/setup.mjs --unlink",
"postinstall": "pnpm build"
},
"dependencies": {
"@rotorsoft/act-diagram": "^0.3.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "~6.0.2",
"vite": "^8.0.2"
}
}