forked from okrad/svelte-progressbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.56 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": "@megapenthes/svelte4-progressbar",
"version": "1.0.1",
"description": "A multi-series SVG progress bar component made with Svelte. It can be rendered both as a linear, radial (circular), semicircular or even custom-shaped progressbar. Originally created by okrad: Enrico Triolo <[email protected]>, versions updated by Pete-Y-CS",
"author": "Enrico Triolo <[email protected]>",
"license": "MIT",
"repository": "https://github.com/Pete-Y-CS/svelte-progressbar.git",
"keywords": [
"progress bar",
"progressbar",
"svelte",
"svg"
],
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"bundle": "vite build -c vite.bundle.config.js --outDir bundle",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"svelte": "./dist/index.js"
}
},
"files": [
"dist"
],
"peerDependencies": {
"svelte": "^4.0.0"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.20.4",
"@sveltejs/package": "^2.1.0",
"publint": "^0.1.9",
"svelte": "^4.0.0",
"svelte-check": "^3.4.3",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.2.0"
},
"svelte": "./dist/index.js",
"types": "./dist/types.d.ts",
"type": "module"
}