-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.35 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.35 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
{
"name": "react-massive-table",
"version": "1.6.6",
"private": false,
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles.css": {
"types": "./dist/types/css-modules.d.ts",
"default": "./dist/react-massive-table.css"
},
"./styles/base.module.css": {
"types": "./dist/types/css-modules.d.ts",
"default": "./dist/styles/base.module.css"
},
"./themes/light.module.css": {
"types": "./dist/types/css-modules.d.ts",
"default": "./dist/themes/light.module.css"
},
"./themes/dark.module.css": {
"types": "./dist/types/css-modules.d.ts",
"default": "./dist/themes/dark.module.css"
}
},
"scripts": {
"dev": "vite",
"build": "vite build && tsc -p tsconfig.build.json && node scripts/copy-css.mjs",
"build:demo": "vite build --config vite.site.config.ts",
"preview": "vite preview",
"preview:demo": "vite preview --config vite.site.config.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "biome lint .",
"format": "biome format .",
"format:check": "biome format --write=false .",
"ci:biome": "biome ci .",
"tidy": "biome lint --write . && biome format --write . && biome check --write .",
"test": "vitest run",
"test:watch": "vitest"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"chance": "^1.1.13",
"jsdom": "^27.3.0",
"prismjs": "^1.30.0",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"vitest": "^4.0.15"
},
"typesVersions": {
"*": {
"styles.css": [
"dist/types/css-modules.d.ts"
],
"styles/*": [
"dist/types/css-modules.d.ts"
],
"themes/*": [
"dist/types/css-modules.d.ts"
],
"themes/dark.module.css": [
"dist/types/css-modules.d.ts"
],
"themes/light.module.css": [
"dist/types/css-modules.d.ts"
]
}
}
}