-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.54 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.54 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "gitsnip",
"version": "1.0.0",
"description": "Download any file, folder, or whole repo from GitHub—without git",
"type": "module",
"main": "dist/index.js",
"bin": {
"gitsnip": "dist/cli/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json --watch",
"dev": "tsx src/cli/index.ts",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint src --ext .ts --fix",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run clean && npm run build",
"postbuild": "chmod +x dist/cli/index.js",
"clean": "rm -rf dist"
},
"keywords": [
"github",
"cli",
"download",
"git",
"typescript"
],
"author": "volx",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vo1x/gitsnip.git"
},
"homepage": "https://github.com/vo1x/gitsnip#readme",
"bugs": {
"url": "https://github.com/vo1x/gitsnip/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"ora": "^8.0.1",
"tar": "^7.4.3"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
}
}