-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
124 lines (124 loc) · 3.4 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "svelte-range-slider-pips",
"version": "3.1.4",
"description": "Multi-Thumb, Accessible, Beautiful Range Slider with Pips",
"repository": {
"type": "git",
"url": "git+https://github.com/simeydotme/svelte-range-slider-pips.git"
},
"homepage": "https://simeydotme.github.io/svelte-range-slider-pips/",
"author": "Simon Goellner <[email protected]>",
"license": "MPL-2.0",
"type": "module",
"module": "./dist/range-slider-pips.mjs",
"svelte": "./dist/svelte/index.js",
"types": "./dist/svelte/index.d.ts",
"exports": {
".": [
{
"types": "./dist/svelte/index.d.ts",
"svelte": "./dist/svelte/index.js",
"import": "./dist/range-slider-pips.mjs",
"require": "./dist/range-slider-pips.js",
"style": "./dist/range-slider-pips.css",
"default": "./dist/range-slider-pips.js"
},
"./dist/range-slider-pips.js"
],
"./dist/*.css": [
{
"import": "./dist/range-slider-pips.css",
"require": "./dist/range-slider-pips.css",
"default": "./dist/range-slider-pips.css"
},
"./dist/range-slider-pips.css"
],
"./RangeSlider.svelte": "./src/lib/RangeSlider.svelte",
"./RangePips.svelte": "./src/lib/RangePips.svelte"
},
"files": [
"dist",
"src/lib",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"scripts": {
"dev": "vite dev",
"build": "npm run build:vanilla && vite build && npm run build:svelte",
"build:svelte": "svelte-kit sync && svelte-package -o dist/svelte && publint",
"build:vanilla": "rollup -c",
"preview": "vite preview",
"prepublishOnly": "npm run build",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:integration": "playwright test",
"test:unit": "vitest",
"lint": "prettier --check .",
"format": "prettier --write .",
"add:dist": "git add dist"
},
"pre-commit": [
"format",
"build",
"add:dist"
],
"peerDependencies": {
"svelte": "^4.2.7 || ^5.0.0"
},
"devDependencies": {
"@playwright/test": "^1.28.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/package": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@types/node": "^20.11.16",
"globby": "^14.0.0",
"pre-commit": "^1.2.2",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"publint": "^0.1.9",
"rollup": "^4.9.6",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-svelte": "^7.1.6",
"svelte": "^4.2.7 || ^5.0.0",
"svelte-check": "^3.6.0",
"svelte-preprocess": "^5.1.3",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^5.0.11",
"vitest": "^1.2.0"
},
"keywords": [
"svelte",
"component",
"ui",
"input",
"range",
"slider",
"thumb",
"handle",
"min",
"max",
"accessible",
"pretty",
"pip",
"pips",
"notch",
"notches",
"simey",
"simeydotme",
"react",
"reactjs",
"vue",
"vuejs",
"solid",
"solidjs"
]
}