-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1010 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "wjaapcn",
"version": "2.0.1",
"description": "오늘 점심 뭐 먹지?... 추천해드림",
"main": "dist/index.js",
"exports": {
"import": "./dist/index.js"
},
"files": [
"dist/**/*"
],
"scripts": {
"start": "node dist/index.js",
"build": "yarn clean && yarn build:ts",
"build:ts": "tsc",
"clean": "rimraf dist",
"clean:nm": "rimraf node_modules"
},
"keywords": [
"점메추",
"점심",
"뭐먹지",
"메뉴",
"추천",
"lunch",
"menu",
"recommendation"
],
"author": {
"name": "KimPra2989",
"email": "dustmqaksdltkfrlfdldi@gmail.com",
"url": "https://github.com/KimPra2989"
},
"repository": "github:KimPra2989/wjaapcn",
"bin": "dist/index.js",
"type": "module",
"license": "MIT",
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"inquirer": "^10.1.8"
},
"devDependencies": {
"@types/node": "^22.4.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}