-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.9 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.9 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
{
"name": "react-slite",
"version": "0.4.2",
"main": "dist/react-slite.cjs.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"author": "palerdot<palerdot@gmail.com>",
"repository": "https://github.com/palerdot/react-slite",
"module": "dist/react-slite.es.js",
"files": [
"dist"
],
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"peerDependencies": {
"react": ">=18"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"test": "vitest",
"lint": "biome check src/ test/",
"lint:fix": "biome check --write src/ test/",
"prepare": "pnpm build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@chromatic-com/storybook": "^4.1.2",
"@size-limit/preset-small-lib": "^11.2.0",
"@storybook/addon-docs": "^10.0.5",
"@storybook/addon-links": "^10.0.5",
"@storybook/react-vite": "^10.0.5",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^5.1.0",
"babel-loader": "^10.0.0",
"happy-dom": "^17.4.2",
"husky": "^9.1.7",
"prop-types": "^15.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-is": "^19.0.0",
"storybook": "^10.0.5",
"tslib": "^2.8.1",
"typescript": "^5.8.2",
"vite": "^7.2.1",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.7"
},
"dependencies": {
"@lexical/code": "^0.38.2",
"@lexical/extension": "^0.38.2",
"@lexical/link": "^0.38.2",
"@lexical/list": "^0.38.2",
"@lexical/markdown": "^0.38.2",
"@lexical/react": "^0.38.2",
"@lexical/rich-text": "^0.38.2",
"@lexical/selection": "^0.38.2",
"@lexical/table": "^0.38.2",
"@lexical/utils": "^0.38.2",
"lexical": "^0.38.2"
}
}