generated from khalidx/typescript-cli-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 978 Bytes
/
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
{
"name": "typescript-cli-starter",
"private": true,
"version": "1.0.0",
"description": "A simple and zero-opinion typescript starter template for building cross-platform command line applications.",
"author": "Khalid Zoabi <[email protected]>",
"keywords": [
"typescript",
"cli",
"starter"
],
"license": "MIT",
"main": "./dist/index.js",
"bin": "./dist/cli.js",
"files": [
"dist/**/*",
"!dist/**/*.test.js"
],
"scripts": {
"dev": "ts-node ./src/cli.ts",
"clean": "rimraf ./dist/ ./exec/",
"build": "npm run clean && tsc",
"test": "npm run build && ava --verbose",
"bundle": "npm run build && pkg . --out-dir ./exec/"
},
"devDependencies": {
"@types/node": "^20.10.3",
"ava": "^2.2.0",
"pkg": "^4.4.0",
"rimraf": "^2.6.3",
"ts-node": "^8.3.0",
"typescript": "^5.3.2"
},
"dependencies": {
"commander": "^2.20.0",
"dotenv": "^16.3.1",
"isomorphic-git": "^1.25.0"
}
}