-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
85 lines (85 loc) · 1.98 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@thisbeyond/solid-select",
"version": "0.15.0",
"description": "The Select component for Solid.",
"info": "A flexible, reactive Select component and core built for use with SolidJS. Supports single or multiple values; static, reactive or dynamic options (including via async fetch); builtin filtering; custom styling and more!",
"homepage": "https://solid-select.com",
"license": "MIT",
"author": "Martin Pengelly-Phillips",
"contributors": [
{
"name": "Martin Pengelly-Phillips",
"email": "[email protected]"
}
],
"keywords": [
"select",
"combobox",
"autocomplete",
"solid",
"solidjs",
"solidhack",
"best_ecosystem"
],
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"exports": {
".": {
"solid": {
"development": "./dist/dev.jsx",
"import": "./dist/index.jsx"
},
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dev.js"
}
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./style.css": {
"import": "./dist/style.css"
}
},
"typesVersions": {},
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "pnpm run build",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thisbeyond/solid-select.git"
},
"peerDependencies": {
"solid-js": "^1.8"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^5.0.0",
"prettier": "^3.3.2",
"release-it": "^17.4.0",
"solid-js": "^1.8",
"tsup": "^8.1.0",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.5.2"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
}
}