-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1018 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
40
{
"name": "wmd-ts-calculator",
"version": "1.0.4",
"description": "A CLI based calculator using typescript and published as an executable npm package.",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"start": "node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/hassan-ak/wmd-ts-calculator.git"
},
"keywords": [
"calculator",
"typescript",
"npx"
],
"bin": "./dist/index.js",
"author": "Hassan Ali Khan",
"license": "ISC",
"bugs": {
"url": "https://github.com/hassan-ak/wmd-ts-calculator/issues"
},
"homepage": "https://github.com/hassan-ak/wmd-ts-calculator#readme",
"dependencies": {
"chalk": "^5.1.2",
"chalk-animation": "^2.0.3",
"cli-table": "^0.3.11",
"inquirer": "^9.1.4",
"nanospinner": "^1.1.0",
"prettier": "^2.7.1"
},
"devDependencies": {
"@types/chalk-animation": "^1.6.1",
"@types/cli-table": "^0.3.1",
"@types/inquirer": "^9.0.3",
"@types/prettier": "^2.7.1"
}
}