-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.74 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
{
"name": "jselect.js",
"title": "Select.js",
"description": "A lightweight, and easy-to-use, JavaScript library for creating multi-select drop-down lists!",
"version": "1.1.0",
"homepage": "https://www.william-troup.com/select-js/",
"author": {
"name": "Bunoon"
},
"repository": {
"type": "git",
"url": "https://github.com/williamtroup/Select.js"
},
"license": "MIT",
"keywords": [
"javascript",
"css",
"select",
"drop-down",
"html5",
"multi-select",
"Select.js",
"multiple",
"tag",
"selector",
"list"
],
"bugs": {
"url": "https://github.com/williamtroup/Select.js/issues"
},
"main": "dist/select.js",
"types": "dist/select.d.ts",
"scripts": {
"build-all": "npm run build && npm run build-minimized",
"build": "tsup --config tsup.build.config.ts && tsup --config tsup.build.esm.config.ts && sass src/select.js.scss dist/select.js.css",
"build-minimized": "tsup --config tsup.build.min.config.ts && sass src/select.js.scss dist/select.js.min.css --style=compressed --no-source-map",
"build-typescript": "tsup --config tsup.build.config.ts",
"build-typescript-esm": "tsup --config tsup.build.esm.config.ts",
"build-typescript-minimized": "tsup --config tsup.build.min.config.ts",
"build-sass": "sass src/select.js.scss dist/select.js.css",
"build-sass-minimized": "sass src/select.js.scss dist/select.js.min.css --style=compressed --no-source-map"
},
"devDependencies": {
"@swc/core": "^1.7.23",
"sass": "^1.77.8",
"terser": "^5.31.6",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
}
}