-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.1 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
{
"name": "avil13-co",
"version": "2.2.4",
"description": "",
"main": "dist/index.js",
"public": true,
"bin": {
"co": "./bin/co"
},
"files": [
"dist",
"bin",
"src",
"assets"
],
"scripts": {
"prepublishOnly": "npm run build",
"start": "npm run build && node dist/index.js",
"dev": "ts-node --project tsconfig.json src/index.ts",
"dev:watch": "nodemon",
"lint:fix": "eslint --fix --ext .js,.ts .",
"test": "vitest run",
"test:watch": "vitest",
"type-check": "tsc -p . --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "rm -rf ./dist && tsc -p ."
},
"keywords": [
"git",
"git checkout",
"cli"
],
"author": "Aleksey Pivkin",
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:avil13/avil13-git-co.git"
},
"dependencies": {
"inquirer": "^8.2.2",
"inquirer-autocomplete-prompt": "^2.0.0"
},
"devDependencies": {
"@types/inquirer": "^8.2.1",
"@types/node": "^17.0.23",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"vitest": "^0.10.0"
}
}