-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 756 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 756 Bytes
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
{
"name": "@hasagi/cli",
"version": "0.9.1",
"description": "This package provides the 'hasagi' command-line interface",
"bin": {
"hasagi": "bin/index.js"
},
"main": "bin/index.js",
"scripts": {
"build": "tsc",
"pub": "npm run build && npm publish --access public",
"update": "npm i @hasagi/core@latest @hasagi/schema@latest"
},
"keywords": [
"hasagi"
],
"author": "dysolix",
"license": "MIT",
"dependencies": {
"@hasagi/core": "^0.5.12",
"@hasagi/schema": "^0.6.1",
"yargs": "^17.7.2"
},
"type": "module",
"devDependencies": {
"@types/node": "^20.6.2",
"@types/yargs": "^17.0.24"
},
"repository": {
"type": "git",
"url": "https://github.com/dysolix/hasagi-cli.git"
}
}