-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.82 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "git-recent-branch",
"type": "module",
"version": "1.0.0",
"private": false,
"description": "",
"author": "Anton Ödman <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/banjo/git-recent-branch#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/banjo/git-recent-branch.git"
},
"bugs": "https://github.com/banjo/git-recent-branch/issues",
"keywords": [],
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"git-recent-branch": "dist/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist/*"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest --watch=false",
"test:dev": "vitest",
"typecheck": "tsc --noEmit",
"format": "npx prettier --write ."
},
"devDependencies": {
"@antfu/ni": "^0.19.0",
"@banjoanton/utils": "^0.1.17",
"@types/minimist": "^1.2.2",
"@types/node": "^18.11.18",
"bumpp": "^8.2.1",
"eslint": "^8.32.0",
"esno": "^0.16.3",
"hoks": "^0.1.17",
"pnpm": "^7.26.1",
"prettier": "^2.8.3",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vitest": "^0.28.3"
},
"dependencies": {
"@inquirer/prompts": "^7.0.1",
"execa": "^7.0.0",
"minimist": "^1.2.8",
"picocolors": "^1.0.0"
}
}