-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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
{
"name": "ux-select",
"version": "2.7.0",
"description": "UX Select is a lightweight Native JavaScript plugin that replace native select elements with customization",
"keywords": [
"web",
"front-end",
"HTMLSelect",
"select",
"dropdown",
"multiple select",
"disabled select",
"searchable select",
"group option select",
"ui select",
"ux select",
"lightweight",
"TypeScript",
"Native JavaScript",
"Vanilla JavaScript",
"ES-module",
"Non ES-module"
],
"type": "module",
"main": "./src/ux-select.ts",
"types": "./src/types.d.ts",
"scripts": {
"format": "prettier -w ./src",
"lint": "eslint . --ext .ts --max-warnings 0",
"build": "tsc && vite build"
},
"devDependencies": {
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"sass": "^1.77.6",
"typescript": "^5.5.4",
"vite": "^5.4.11",
"vite-plugin-css-injected-by-js": "^3.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/afonja14755/ux-select.git"
},
"author": "Afonchenkov Dmitrii <afonchenkov.dmitrii@gmail.com> (https://github.com/afonja14755)",
"license": "MIT",
"bugs": {
"url": "https://github.com/afonja14755/ux-select/issues"
},
"homepage": "https://ux-select.com"
}