-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 957 Bytes
/
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
{
"name": "bsm-oauth",
"version": "1.1.0",
"description": "BSM Auth를 JavaScript에서 쉽게 사용할 수 있는 라이브러리",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
}
},
"scripts": {
"build": "npm run build:cjs & npm run build:esm",
"build:cjs": "tsc --p ./cjs/tsconfig.json",
"build:esm": "tsc --p ./esm/tsconfig.json",
"format": "prettier --write \"**/*.{ts,js,md}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/leehj050211/bsm-oauth-js.git"
},
"author": "leehj050211",
"license": "MIT",
"bugs": {
"url": "https://github.com/leehj050211/bsm-oauth-js/issues"
},
"homepage": "https://github.com/leehj050211/bsm-oauth-js#readme",
"dependencies": {
"axios": "^1.6.0",
"typescript": "^4.8.4"
},
"devDependencies": {
"prettier": "3.0.3"
}
}