-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 KB
/
package.json
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
{
"name": "@ts-dag/visualizer",
"version": "0.1.0-alpha.1",
"private": false,
"description": "build visual representation of directed acyclic graph of tasks",
"main": "dist/main.js",
"files": [
"/dist"
],
"homepage": "https://github.com/wallexd/ts-dag/tree/main/pkgs/visualizer",
"repository": {
"url": "git+https://github.com/wallexd/ts-dag.git",
"directory": "pkgs/visualizer"
},
"author": "walleXD",
"scripts": {
"test": "pnpm run build & pnpm run test:only",
"dev": "pnpm run build:fast --watch",
"build": "tsup-node src/main.ts --clean --splitting",
"test:only": "vitest run",
"build:fast": "pnpm run build --no-dts",
"docs": "typedoc --out docs"
},
"keywords": [],
"license": "mit",
"peerDependencies": {
"@ts-dag/builder": "^0.1.0-alpha.4"
},
"dependencies": {
"@ts-graphviz/adapter": "^2.0.2",
"ts-graphviz": "^2.1.1"
},
"devDependencies": {
"@types/node": "20",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.5.0",
"@ts-dag/builder": "workspace:*"
}
}