-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "@thomasloven/round-slider",
"version": "0.6.0",
"description": "",
"main": "round-slider.cjs",
"type": "module",
"module": "round-slider.js",
"typings": "round-slider.d.ts",
"dependencies": {
"lit": "^2.0.0-rc.2",
"tslib": "^2.2.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"rollup": "^3.8.1",
"rollup-plugin-terser": "^7.0.2",
"serve": "^14.1.2",
"typescript": "^4.3.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && rollup -c",
"watch": "tsc -w & rollup -c -w",
"develop": "npm run watch & npm run serve",
"serve": "serve",
"prepublishOnly": "tsc && rollup -c"
},
"keywords": [
"slider",
"round-slider",
"webcomponent",
"Lit",
"litElement"
],
"author": "thomasloven",
"license": "MIT",
"files": [
"round-slider.js",
"round-slider.cjs",
"round-slider.iife.js"
],
"repository": {
"url": "https://github.com/thomasloven/round-slider.git",
"type": "git"
}
}