-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.03 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
{
"name": "@bcsdlab/utils",
"version": "0.0.15",
"main": "dist/index.js",
"description": "bcsdlab 프론트엔드 유틸 모음입니다.",
"type": "module",
"license": "MIT",
"scripts": {
"build": "yarn clean && yarn build:tsc && yarn build:js",
"build:tsc": "yarn tsc --emitDeclarationOnly",
"build:js": "node build.js",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BCSDLab/FRONT_UTILS_LIBRARY.git"
},
"keywords": [
"frontend",
"utils",
"bcsdlab"
],
"bugs": {
"url": "https://github.com/BCSDLab/FRONT_UTILS_LIBRARY/issues"
},
"homepage": "https://github.com/BCSDLab/FRONT_UTILS_LIBRARY#readme",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"src"
],
"devDependencies": {
"esbuild": "^0.20.2",
"typescript": "^5.4.4"
},
"dependencies": {
"@types/josa": "^3.0.5",
"josa": "^3.0.1"
}
}