-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.41 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.41 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@thisbeyond/solid-select",
"version": "0.16.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": "dev@thisbeyond.com"
}
],
"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",
"build:site": "pnpm -C site build",
"dev": "tsup --watch",
"dev:site": "pnpm -C site dev",
"test": "vitest",
"test:e2e": "playwright test",
"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": {
"@playwright/test": "^1.57.0",
"@release-it/keep-a-changelog": "^7.0.0",
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.0.6",
"jsdom": "^27.4.0",
"prettier": "^3.3.2",
"release-it": "^19.2.3",
"solid-js": "^1.8",
"tsup": "^8.1.0",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.5.2",
"vite": "^7.3.1",
"vite-plugin-solid": "^2.11.10",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
}
}