-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.28 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.28 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
{
"name": "@techfusionmasters/tanstack-table-adapter",
"version": "0.1.2",
"description": "Adapter for TanStack Table in React applications",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.config.mjs",
"build:types": "rollup -c rollup.config.types.mjs",
"dev": "rollup -c rollup.config.mjs -w",
"test": "jest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"clean": "rimraf dist",
"prepare": "npm run clean && npm run build && npm run build:types",
"docs": "typedoc --tsconfig tsconfig.docs.json",
"build-docs": "npm run build-storybook && npm run docs"
},
"keywords": [
"tanstack",
"table",
"adapter",
"react-table",
"typescript"
],
"author": "TechFusionMasters",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TechFusionMasters/tanstack-table-adapter.git"
},
"peerDependencies": {
"@tanstack/react-table": "^8.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-docs": "^9.0.14",
"@storybook/react-vite": "^9.0.14",
"@tailwindcss/postcss": "^4.1.11",
"@tanstack/react-table": "^8.21.3",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.5.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^6.0.1",
"rollup": "^4.9.1",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"storybook": "^9.0.14",
"tailwindcss": "^4.1.11",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typedoc": "^0.28.6",
"typedoc-plugin-markdown": "^4.7.0",
"typescript": "^5.3.3"
}
}