-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.38 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.38 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
{
"type": "module",
"name": "@graph-toolkit/dag",
"version": "0.7.0",
"description": "Typescript toolkit for directed acyclic graph",
"module": "dist/index.es.js",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js"
},
"./dist/*": "./dist/*"
},
"files": [
"README.md",
"dist"
],
"scripts": {
"demo": "vite",
"eslint-check": "eslint 'src/**/*.[ts][tsx]'",
"stylelint-check": "stylelint --allow-empty-input 'demo/**/*.css'",
"prettier-check": "prettier --check src",
"unit": "vitest",
"build": "vite build"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"@xyflow/react": "^12.3.5",
"classnames": "^2.5.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.6.3",
"typescript-eslint": "^7.18.0",
"vite": "^5.4.11",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^1.6.0"
}
}