-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 816 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 816 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
34
35
36
37
38
{
"name": "@kitspark/kitget",
"description": "kitget is a one-shot source slicer for the Kitspark ecosystem.",
"license": "MIT",
"author": "Kitspark",
"repository": {
"type": "git",
"url": "https://github.com/kitspark/kitget"
},
"homepage": "https://github.com/kitspark/kitget#readme",
"bugs": {
"url": "https://github.com/kitspark/kitget/issues"
},
"keywords": [
"cli"
],
"publishConfig": {
"access": "public"
},
"version": "0.3.2",
"private": false,
"bin": {
"kitget": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.11.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}