-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.75 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.75 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
92
93
94
{
"name": "@boomi/embedkit",
"version": "1.4.11",
"license": "BSD-2-Clause",
"author": "Boomi, LP",
"description": "A JavaScript library for embedding Boomi EmbedKit into an application.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./index.css": "./dist/index.css"
},
"scripts": {
"clean": "rimraf dist",
"dev": "vite",
"dev:betc": "vite --config vite.betc.config.ts",
"build": "vite build",
"build:cdn": "vite build --config vite.cdn.config.ts && node scripts/copy-cdn-assets.cjs",
"build:types": "dts-bundle-generator -o dist/index.d.ts src/index.ts --no-banner --project tsconfig.types.json",
"lint": "eslint .",
"preview": "vite preview",
"build:docs": "rm -rf docs-md && npm run build && npx typedoc",
"test": "vitest --mode test",
"test:ui": "vitest --mode test --ui"
},
"dependencies": {
"@boomi/embedkit-sdk": "^1.2.19",
"axios": "^1.11.0",
"chart.js": "^4.4.3",
"classnames": "^2.5.1",
"data-fns": "^1.1.0",
"date-fns": "^4.1.0",
"dompurify": "^3.2.6",
"framer-motion": "^12.23.6",
"os": "^0.1.2",
"path": "^0.12.7",
"react-ace": "^14.0.1",
"react-xarrows": "^2.0.2",
"sweetalert2": "^11.19.1",
"sweetalert2-react-content": "^5.1.0",
"winston": "^3.17.0",
"zod": "^3.25.76"
},
"peerDependencies": {
"react": "^19.1.2",
"react-dom": "^19.1.2"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@headlessui/react": "^2.2.1",
"@tailwindcss/postcss": "^4.1.4",
"@tailwindcss/vite": "^4.1.3",
"@testing-library/jest-dom": "^6.7.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.14.1",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@types/winston": "^2.4.4",
"@vitejs/plugin-react": "^4.3.4",
"dotenv": "^16.4.7",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"jsdom": "^26.1.0",
"msw": "^2.10.5",
"openapi-typescript-codegen": "^0.29.0",
"postcss-preset-env": "^10.1.5",
"prettier": "^3.5.3",
"react-icons": "^5.5.0",
"rimraf": "^6.0.1",
"tailwindcss": "^4.1.3",
"typedoc-plugin-markdown": "^4.7.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.24.1",
"undici": "^7.16.0",
"vite": "^6.2.0",
"vite-plugin-clean": "^2.0.1",
"vitest": "^3.1.1"
}
}