-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
55 lines (55 loc) · 1.47 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
{
"name": "rsup-progress",
"description": "A lightweight (1KB) progress bar with promise support",
"version": "3.2.0",
"repository": "https://github.com/skt-t1-byungi/rsup-progress.git",
"author": "skt-t1-byungi <[email protected]>",
"files": [
"dist/"
],
"workspaces": [
"website/"
],
"source": "src/index.ts",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
},
"keywords": [
"progress",
"progressbar",
"loader",
"promise",
"1kb"
],
"license": "MIT",
"scripts": {
"dev": "vite",
"test": "echo skip",
"build": "rm -rf dist && npm run esm && npm run cjs",
"esm": "tsc -p tsconfig.esm.json",
"cjs": "tsc -p tsconfig.cjs.json",
"website": "vite build",
"deploy": "rm -rf dist && npm run website && gh-pages -d dist",
"prepublishOnly": "npm run test && npm run build"
},
"engines": {
"node": ">= 6"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.1",
"gh-pages": "^6.1.1",
"include-media": "^2.0.0",
"minireset.css": "^0.0.7",
"prettier": "^3.2.5",
"sass": "^1.75.0",
"thejungle": "^3.0.0",
"typescript": "^5.4.5",
"vite": "^5.2.10"
}
}