-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.37 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
{
"name": "@rolemodel/tailored-select",
"description": "Tailored Select is a Web Component built to be a searchable select box. Inspired by tom-select.js to provide a framework agnostic autocomplete widget with native-feeling keyboard navigation. Useful for tagging, contact lists, etc.",
"version": "0.0.4",
"author": "RoleModel Software",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/assets/index.js"
}
},
"files": [
"dist"
],
"keywords": [
"web components",
"custom elements",
"components",
"select",
"search",
"tagging",
"ui",
"form",
"input",
"control",
"autocomplete",
"tagging",
"tag"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RoleModel/tailored-select.git"
},
"bugs": {
"url": "https://github.com/RoleModel/tailored-select/issues"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint 'src/**/*.js'",
"prettier": "prettier -w .",
"prettier-check": "prettier -c .",
"sanity-check": "yarn lint && yarn prettier && yarn build && rm -rf ./dist"
},
"devDependencies": {
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"vite": "^5.4.1",
"sass": "^1.77.8",
"prettier": "^3.3.3"
},
"dependencies": {
"lit": "^3.2.0"
}
}