-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.04 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.04 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
{
"name": "@gocodealone/workflow-editor",
"version": "0.3.48",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./stores": {
"types": "./dist/stores/index.d.ts",
"import": "./dist/stores/index.js",
"require": "./dist/stores/index.cjs"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils/index.js",
"require": "./dist/utils/index.cjs"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.js",
"require": "./dist/types/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build && tsc --project tsconfig.build.json --emitDeclarationOnly",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"lint": "eslint src/"
},
"peerDependencies": {
"@xyflow/react": "^12.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"zustand": "^4.0.0 || ^5.0.0"
},
"dependencies": {
"dagre": "^0.8.5",
"js-yaml": "^4.1.1",
"jszip": "^3.10.1"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/dagre": "^0.7.52",
"@types/js-yaml": "^4.0.9",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@xyflow/react": "^12.10.1",
"eslint": "^9.39.1",
"jsdom": "^26.1.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"zustand": "^5.0.11"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/GoCodeAlone/workflow-editor.git"
},
"license": "Apache-2.0"
}