-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.92 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.92 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
{
"name": "react-responsive-overflow-list",
"version": "0.3.3",
"type": "module",
"description": "A responsive React component that shows as many items as can fit within constraints, hiding overflow items behind a configurable overflow renderer",
"module": "dist/index.js",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsdown",
"build:registry": "shadcn build ./registry/radix-vega/registry.json -o ./public/r/styles/radix-vega && shadcn build ./registry/base-vega/registry.json -o ./public/r/styles/base-vega",
"build:all": "pnpm build && pnpm build:registry",
"dev": "tsdown --watch",
"lint": "eslint src --ext .ts,.tsx",
"type-check": "tsc --noEmit",
"demo:dev": "pnpm --filter demo dev",
"demo:build": "pnpm --filter demo build",
"demo:build:prod": "NODE_ENV=production pnpm --filter demo build",
"dev:all": "pnpm -r --parallel run dev"
},
"keywords": [
"react",
"component",
"overflow",
"responsive",
"ui",
"typescript"
],
"author": "Eliav Louski",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@base-ui/react": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"react": "catalog:",
"shadcn": "^3.7.0",
"tsdown": "^0.2.0",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Eliav2/react-responsive-overflow-list"
},
"bugs": {
"url": "https://github.com/eliav2/react-responsive-overflow-list/issues"
},
"homepage": "https://github.com/eliav2/react-responsive-overflow-list#readme",
"prettier": {
"printWidth": 120
}
}