forked from jhfgloria/bloggista
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 892 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
{
"name": "bloggista",
"version": "0.5.3",
"description": "Build and manage blogs tool",
"main": "index.js",
"scripts": {
"development": "tsc --watch",
"compile": "tsc",
"compile:clean": "rm -rf output",
"prepublish": "npm run compile"
},
"bin": {
"bloggista": "./output/index.js"
},
"keywords": [
"Blogs",
"Tools"
],
"author": "jhfgloria",
"license": "ISC",
"directories": {
"example": "example",
"src": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhfgloria/bloggista.git"
},
"bugs": {
"url": "https://github.com/jhfgloria/bloggista/issues"
},
"homepage": "https://github.com/jhfgloria/bloggista#readme",
"dependencies": {
"commander": "^9.4.1",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/node": "^18.11.2"
}
}