-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.12 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
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
{
"name": "explore-tables",
"version": "0.0.0",
"homepage": "https://bozerkins.github.io/explore-tables/",
"repository": {
"type": "git",
"url": "https://github.com/bozerkins/explore-tables"
},
"type": "module",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"license": "GPL-3.0-only",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.cjs"
},
"./*.css": {
"import": "./dist/*.css",
"require": "./dist/*.css"
}
},
"keywords": [
"react",
"table",
"tables",
"drag-and-drop",
"typescript",
"react-component",
"data-table",
"grid",
"datagrid",
"sortable",
"ui-component",
"react-table",
"responsive-table"
],
"scripts": {
"dev": "vite -c vite-app.config.js",
"lib-build": "tsc --p ./tsconfig.build.json && vite build -c vite-lib.config.js",
"lib-deploy": "npm publish --provenance --access public",
"app-build": "tsc --p ./tsconfig.app.json && vite build -c vite-app.config.js",
"app-deploy": "gh-pages -d dist-app",
"lint": "eslint .",
"preview": "vite preview",
"build": "npm run lib-build",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"sideEffects": [
"**/*.css"
],
"devDependencies": {
"@atlaskit/pragmatic-drag-and-drop": "^1.4.0",
"@eslint/js": "^9.13.0",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"gh-pages": "^6.2.0",
"globals": "^15.11.0",
"postcss-normalize": "^13.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.11.0",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0"
},
"dependencies": {
"@types/prismjs": "^1.26.5",
"prismjs": "^1.29.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1"
}
}