-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.35 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
{
"name": "@talkohavy/table",
"private": true,
"version": "0.0.17",
"main": "dist/main.js",
"description": "The most simple Table implementation in the world, that fits 90% of your use-cases.",
"types": "dist/main.d.ts",
"type": "module",
"keywords": ["table", "@tanstack/table"],
"scripts": {
"dev": "vite --config vite.config.webapp.ts",
"clean": "rm -rf node_modules",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"typecheck": "tsc -p tsconfig.package.json --noEmit --emitDeclarationOnly false",
"format-check": "prettier . --check --config .prettierrc.mjs --ignore-path .prettierignore",
"format": "prettier . --write --log-level silent --config .prettierrc.json --ignore-path .prettierignore",
"test": "node --test",
"build": "node build.config.js",
"build-webapp": "vite build --config vite.config.webapp.ts",
"preview": "vite preview --config vite.config.webapp.ts"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "restricted"
},
"repository": {
"type": "git",
"url": "git+https://github.com/talkohavy/table.git"
},
"bugs": {
"url": "https://github.com/talkohavy/table/issues",
"email": "[email protected]"
},
"author": "Tal Kohavy <[email protected]> (https://github.com/talkohavy)",
"license": "MIT",
"sideEffects": ["**/*.css", "**/*.scss"],
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^22.5.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"eslint": "^8.57.0",
"eslint-plugin-ezlint": "^1.6.3",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"glob": "^11.0.0",
"globals": "^15.9.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"sass-embedded": "^1.78.0",
"tailwindcss": "^3.4.12",
"typescript": "~5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1",
"vite-plugin-lib-inject-css": "^2.1.1"
},
"dependencies": {
"@tanstack/react-table": "^8.20.5",
"react-virtual": "^2.10.4"
},
"homepage": "https://talkohavy.github.io/table/"
}