-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 KB
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": "typingtracker",
"version": "1.1.2",
"description": "track the time you spent typing in neovim or lunarvim",
"scripts": {
"build": "tsc",
"dev": "tsc && node dist/cli.js",
"start": "sudo npm install -g ./",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ht3aa/typingtracker_cli"
},
"homepage": "https://github.com/ht3aa/typingtracker_cli#readme",
"bugs": {
"url": "https://github.com/ht3aa/typingtracker_cli/issues"
},
"bin": {
"typingtracker": "dist/cli.js"
},
"author": "ht3aa",
"license": "ISC",
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.30",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0"
},
"type": "module",
"dependencies": {
"@typescript-eslint/utils": "^7.5.0",
"chalk": "^5.3.0",
"inquirer": "^9.2.16",
"pg": "^8.11.5",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.20"
}
}