-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.25 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
{
"name": "react-grid-db-editor",
"version": "1.0.4",
"description": "A powerful, flexible React table editor with sorting, filtering, inline editing, copy & paste, undo/redo, custom editors, column resizing, and more.",
"main": "dist/react-griddbeditor.umd.js",
"module": "dist/react-griddbeditor.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-griddbeditor.mjs",
"require": "./dist/react-griddbeditor.umd.js"
},
"./style.css": "./dist/style.css",
"./themes/*": "./dist/themes/*"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && vite build --config vite.lib.config.ts --outDir dist && tsc -p tsconfig.build.json --emitDeclarationOnly && cp src/core/base.css dist/style.css && cp -r src/examples/themes dist/themes",
"build-release": "vite build --config vite.lib.config.ts && cp src/core/base.css release/style.css",
"test": "jest",
"test:e2e": "playwright test",
"start": "vite",
"build-demo": "vite build",
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\"",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SebastianBaltes/react-grid-db-editor.git"
},
"keywords": [
"react",
"table",
"editor",
"datagrid",
"spreadsheet",
"inline-editing",
"sorting",
"filtering",
"typescript"
],
"author": "Sebastian Baltes <sebastian.l.baltes@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SebastianBaltes/react-grid-db-editor/issues"
},
"homepage": "https://sebastianbaltes.github.io/react-grid-db-editor/",
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"devDependencies": {
"jest": "^29.6.0",
"ts-jest": "^29.1.0",
"jest-environment-jsdom": "^29.7.0",
"@playwright/test": "^1.58.2",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^6.0.1",
"prettier": "^3.0.0",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"typescript": "^5.1.6",
"vite": "^8.0.3"
}
}