-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1011 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1011 Bytes
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": "@codemcp/workflows-visualizer",
"version": "6.13.0",
"type": "module",
"main": "dist/index.ts",
"module": "dist/index.ts",
"exports": {
".": "./dist/index.ts",
"./dist/*": "./dist/*"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "node ../../scripts/generate-workflow-list.js",
"build": "mkdir -p dist && cp -r src/* dist/",
"dev": "npm run prebuild && nodemon --watch src --ext ts,vue,js --ignore 'src/services/workflow-list.ts' --ignore 'dist/**/*' --exec 'npm run build'",
"clean:build": "rimraf ./dist",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format:check": "prettier --check .",
"format": "prettier --write ."
},
"dependencies": {
"d3": "^7.9.0",
"js-yaml": "^4.1.0",
"marked": "^16.4.1",
"vue": "^3.5.22"
},
"devDependencies": {
"@types/node": "^24.0.0",
"nodemon": "^3.1.10",
"rimraf": "^5.0.10",
"typescript": "^6.0.0"
},
"peerDependencies": {
"vue": "^3.4.0"
}
}