-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.76 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
{
"name": "range-slider-element",
"version": "2.0.0-rc.7",
"description": "A cross browser customizable and accessible <range-slider> web component",
"license": "MIT",
"funding": "https://github.com/andreruffert/range-slider-element?sponsor=1",
"homepage": "https://andreruffert.github.io/range-slider-element/",
"author": {
"name": "André Ruffert",
"url": "https://andreruffert.com"
},
"type": "module",
"module": "./dist/range-slider-element.js",
"main": "./dist/range-slider-element.umd.cjs",
"exports": {
".": {
"import": "./dist/range-slider-element.js",
"require": "./dist/range-slider-element.umd.cjs"
},
"./style.css": "./dist/range-slider-element.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"dev:docs": "vite --config vite.docs.config.js",
"format": "biome check --write",
"lint": "biome ci",
"test": "vitest",
"prebuild": "rm -rf dist",
"build": "vite build",
"build:docs": "vite build --config vite.docs.config.js",
"prepublishOnly": "npm run build",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@vitest/browser": "3.0.5",
"conventional-changelog-cli": "5.0.0",
"playwright": "1.50.1",
"vite": "6.1.1",
"vitest": "3.0.5"
},
"volta": {
"node": "22.13.1",
"npm": "11.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreruffert/range-slider-element.git"
},
"bugs": {
"url": "https://github.com/andreruffert/range-slider-element/issues"
},
"keywords": [
"range slider",
"multi thumb",
"customizable",
"accessible",
"web component",
"custom element",
"ui"
]
}