-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.09 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.09 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
{
"name": "@pipelex/mthds-ui",
"version": "0.1.4",
"description": "Shared graph rendering logic for MTHDS method visualization",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pipelex/mthds-ui.git"
},
"type": "module",
"sideEffects": [
"**/*.css"
],
"engines": {
"node": ">=18"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./graph": {
"import": "./dist/graph/index.js",
"types": "./dist/graph/index.d.ts"
},
"./graph/react": {
"import": "./dist/graph/react/index.js",
"types": "./dist/graph/react/index.d.ts"
},
"./graph/react/graph-core.css": "./dist/graph/react/graph-core.css",
"./shiki": {
"import": "./dist/shiki/index.js",
"types": "./dist/shiki/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "tsup",
"build": "tsup",
"lint": "eslint src/",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"check": "npm run lint && npm run format:check && npm run typecheck && npm run test"
},
"peerDependencies": {
"dagre": "^0.8.5",
"@types/dagre": "^0.7.54",
"shiki": "^3.22.0",
"react": "^19",
"react-dom": "^19",
"@xyflow/react": "^12"
},
"peerDependenciesMeta": {
"@types/dagre": {
"optional": true
},
"shiki": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"@xyflow/react": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/dagre": "^0.7.54",
"@types/react": "^19",
"@xyflow/react": "^12",
"eslint": "^9.39.4",
"prettier": "^3.8.1",
"react": "^19",
"shiki": "^3.22.0",
"tsup": "^8.5.0",
"typescript": "^5.4.5",
"typescript-eslint": "^8.35.1",
"vitest": "^4.1.0"
}
}