-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "@uiuxarghya/progress-bar",
"version": "0.1.4",
"description": "A small, easy & zero-dependency progress bar component.",
"repository": {
"type": "git",
"url": "git+https://github.com/uiuxarghya/progress-bar.git"
},
"author": "Arghya Ghosh <[email protected]>",
"license": "MIT",
"main": "dist/progress-bar.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsc && bun build ./src/index.ts --outdir ./dist --entry-naming progress-bar.js --format esm --minify --sourcemap=linked --watch",
"build": "tsc && bun build ./src/index.ts --outdir ./dist --entry-naming progress-bar.js --format esm --minify --sourcemap=linked",
"lint": "tsc",
"size": "size-limit",
"prepublishOnly": "bun run build"
},
"files": [
"dist"
],
"size-limit": [
{
"path": "dist/progress-bar.js",
"limit": "500 B"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^11.1.4",
"@size-limit/time": "^11.1.4",
"size-limit": "^11.1.4",
"typescript": "^5.5.4"
},
"keywords": [
"progress",
"progressbar",
"progress-bar",
"progress-bar-component",
"progress-bar-react",
"progress-bar-react-component",
"uiuxarghya",
"typescript"
]
}