-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.43 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
{
"name": "gesturx",
"private": false,
"version": "1.8.9",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"files": ["dist"],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:lib": "tsc && cross-env LIB_MODE=true vite build",
"preview": "vite preview",
"check": "npx @biomejs/biome check .",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@chakra-ui/react": "^3.1.1",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@types/node": "^22.9.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"@vitest/coverage-v8": "^2.1.5",
"cross-env": "^7.0.3",
"framer-motion": "^11.2.6",
"globals": "^15.6.0",
"happy-dom": "^16.2.6",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup-plugin-node-externals": "^8.0.0",
"rxjs": "^7.8.1",
"typescript": "^5.6.3",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.5",
"next-themes": "^0.4.3",
"react-icons": "^5.4.0"
},
"peerDependencies": {
"rxjs": "7.x"
},
"lint-staged": {
"*": [
"biome check --no-errors-on-unmatched --files-ignore-unknown=true --write"
]
}
}