-
-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathpackage.json
95 lines (95 loc) · 3.02 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
86
87
88
89
90
91
92
93
94
95
{
"name": "slim-select",
"description": "Slim advanced select dropdown",
"version": "2.10.0",
"author": "Brian Voelker <[email protected]> (http://webiswhatido.com)",
"homepage": "https://slimselectjs.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/brianvoe/slim-select.git"
},
"bugs": {
"url": "https://github.com/brianvoe/slim-select/issues"
},
"keywords": [
"select",
"vanilla",
"dropdown",
"search",
"multiselect"
],
"main": "dist/slimselect.umd.js",
"browser": "dist/slimselect.umd.js",
"module": "dist/slimselect.es.js",
"unpkg": "dist/slimselect.umd.min.js",
"types": "dist/index.d.ts",
"style": "dist/slimselect.css",
"sass": "src/slim-select/slimselect.scss",
"exports": {
".": {
"import": "./dist/slimselect.js",
"require": "./dist/slimselect.umd.js",
"types": "./dist/index.d.ts"
},
"./*": {
"types": "./dist/*.d.ts"
},
"./styles": "./dist/slimselect.css"
},
"scripts": {
"dev": "vite --port=1111",
"format": "prettier --write --cache --parser typescript \"src/**/*.ts\"",
"build": "npm run build:clean && npm run build:docs && npm run build:library",
"build:clean": "rimraf ./dist/*",
"build:docs": "vite build",
"build:library": "npm run build:library:js && npm run build:library:css",
"build:library:js": "cd src/slim-select && rollup --config ./rollup.config.mjs && cd ../../",
"build:library:css": "cd src/slim-select && sass ./slimselect.scss ../../dist/slimselect.css --style=compressed && cd ../../",
"lint": "prettier --write ./src/**/*",
"test": "jest",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^14.5.2",
"@types/downloadjs": "^1.4.6",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@vitejs/plugin-vue": "^5.2.0",
"clipboard": "^2.0.11",
"downloadjs": "^1.4.7",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"prismjs": "^1.29.0",
"rimraf": "^6.0.1",
"rollup": "^4.27.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.81.0",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0",
"vue": "^3.5.13",
"vue-router": "^4.4.5",
"vue-tsc": "^2.1.10",
"vuex": "^4.0.2"
}
}