-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.58 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
{
"name": "react-fields-keeper",
"version": "2.0.0",
"type": "module",
"main": "./dist/index.umd.js",
"license": "ISC",
"module": "./dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"/public"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"build:library": "tsc && vite --config library.vite.config.ts build",
"publish:version": "npm publish"
},
"dependencies": {
"classname": "^0.0.0",
"fuzzy-search": "^3.2.1",
"lodash.isequal": "^4.5.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@types/classnames": "^2.3.1",
"@types/fuzzy-search": "^2.1.2",
"@types/lodash.isequal": "^4.5.6",
"@types/node": "^20.1.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react-swc": "^3.0.0",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"less": "^4.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vite-plugin-css-injected-by-js": "^3.1.1",
"vite-plugin-dts": "^2.3.0"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}