-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.75 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
{
"name": "react-creatable-select",
"version": "0.1.0",
"description": "Headless, searchable, creatable + editable select/combobox for React. Single & multi select, inline rename, optional delete, async-first. Built on Radix Popover, designed to drop into shadcn/ui.",
"author": "Sunil Soundarapandian <ssunils2004@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ssunils/react-creatable-select.git"
},
"homepage": "https://github.com/ssunils/react-creatable-select#readme",
"bugs": {
"url": "https://github.com/ssunils/react-creatable-select/issues"
},
"keywords": [
"react",
"select",
"combobox",
"creatable",
"headless",
"multiselect",
"shadcn",
"radix",
"autocomplete"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.cjs",
"dist/**/*.d.ts",
"dist/**/*.d.cts"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"@radix-ui/react-popover": ">=1.0.0"
},
"dependencies": {
"@radix-ui/react-slot": "^1.1.0"
},
"devDependencies": {
"@radix-ui/react-popover": "^1.1.2",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"tsup": "^8.3.0",
"typescript": "^5.6.0"
}
}