-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.63 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.63 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
{
"name": "@cutting/use-get-parent-size",
"description": "Get resize events of an observed DOM element's height, width etc. from a resize-observer.",
"version": "2.2.0",
"module": "dist/esm/index.js",
"type": "module",
"types": "dist/esm/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/dagda1/cuttingedge.git"
},
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"start": "pnpm vite --host --port 9000 -l=info --clearScreen=false",
"test": "NODE_ENV=test vitest",
"lint": "eslint ./src/**/*.{ts,tsx} --fix",
"lint:fix": "pnpm lint --fix",
"build": "NODE_ENV=production devtools rollup"
},
"dependencies": {
"@cutting/assert": "workspace:*",
"resize-observer-polyfill": "^1.5.1",
"use-debounce": "^10.0.4"
},
"devDependencies": {
"@vanilla-extract/sprinkles": "1.6.3",
"@testing-library/react": "16.2.0",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@types/react-router-dom": "5.3.3",
"@types/three": "^0.174.0",
"@vanilla-extract/css": "^1.17.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-router-dom": "7.2.0",
"three": "^0.174.0"
},
"peerDependencies": {
"react": "19.0.0",
"react-dom": "19.0.0",
"resize-observer-polyfill": ">= 1.5.1",
"use-debounce": ">= 10.0.3"
},
"volta": {
"extends": "../../package.json"
},
"keywords": [
"hotkeys",
"focus",
"react",
"reactjs",
"reactnative",
"svg",
"hook",
"resize-observer"
],
"exports": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js"
}
}