-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.8 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
{
"name": "@jokr-it/solid-select-bootstrap",
"version": "0.0.9",
"description": "The Select component for Solid. Enhanced with bootstrap classes",
"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; bootstrap styling and more!",
"license": "MIT",
"author": "Martin Pengelly-Phillips / Jakob Kannenberg",
"contributors": [
{
"name": "Martin Pengelly-Phillips",
"email": "dev@thisbeyond.com"
},
{
"name": "Jakob Kannenberg",
"email": "j.kannenberg@jokr-it.de"
}
],
"keywords": [
"bootstrap",
"select",
"combobox",
"autocomplete",
"solid",
"solidjs",
"solidhack",
"best_ecosystem"
],
"type": "module",
"files": [
"dist"
],
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"solid": "./dist/source/index.jsx",
"default": "./dist/esm/index.js"
},
"./style.css": "./dist/esm/style.css"
},
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jokr-it/solid-select-bootstrap"
},
"peerDependencies": {
"solid-js": "^1.5"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^3.1.0",
"prettier": "^2.7.1",
"release-it": "^15.4.1",
"rollup": "^2.79.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-windicss": "^1.8.8",
"rollup-preset-solid": "^1.4.0",
"solid-js": "^1.5",
"typescript": "^4.8.3"
},
"publishConfig": {
"access": "public"
}
}