-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.05 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
{
"name": "whaaat",
"version": "0.4.5",
"type": "module",
"description": "A non-complex list app for things that make you go whaaat!!!",
"main": "index.js",
"bin": {
"w": "index.js",
"whaaat": "index.js"
},
"scripts": {
"ts:dev": "tsc --watch",
"ts:build": "rm -rf ./dist && tsc",
"ship": "npm run ts:build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/destinio/whaaat.git"
},
"keywords": [
"cli",
"list",
"todo",
"typescript"
],
"author": "Destin Lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/destinio/whaaat/issues"
},
"homepage": "https://destin.io",
"devDependencies": {
"@types/inquirer": "^8.1.3",
"@types/node": "^16.11.11",
"@types/uuid": "^8.3.3",
"typescript": "^4.5.2"
},
"dependencies": {
"cfonts": "^2.10.0",
"chalk": "^5.0.0",
"clipboardy": "^3.0.0",
"fs-jetpack": "^4.3.0",
"inquirer": "^8.2.0",
"meow": "^10.1.2",
"open": "^8.4.0",
"ora": "^6.0.1",
"uuid": "^8.3.2"
}
}