-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.45 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.45 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
41
42
43
44
45
46
47
48
49
{
"$schema": "https://json.schemastore.org/package.json",
"name": "work-time-calculator",
"version": "1.0.2",
"description": "An interactive CLI tool to calculate work time",
"license": "MIT",
"repository": {
"url": "https://git.korhonen.cc/FunctionalHacker/work-time-calculator.git",
"type": "git"
},
"bugs": {
"url": "https://git.korhonen.cc/FunctionalHacker/work-time-calculator/issues",
"email": "wtc@functionalhacker.korhonen.cc"
},
"type": "module",
"bin": {
"wtc": "bin/wtc"
},
"main": "dist/wtc.mjs",
"scripts": {
"prod": "rollup -c ./rollup.prod.config.js",
"dev": "rollup -c ./rollup.dev.config.js"
},
"keywords": [
"work",
"time",
"calculator"
],
"author": "Marko Korhonen <marko@korhonen.cc>",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^20.9.0",
"@types/yargs": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"eslint-config-prettier": "^9.0.0",
"rollup": "^4.5.1",
"rollup-plugin-add-shebang": "^0.3.1",
"tslib": "^2.6.2"
},
"dependencies": {
"chalk": "^5.3.0",
"dayjs": "^1.11.10",
"iarna-toml-esm": "^3.0.5",
"xdg-basedir": "^5.1.0",
"yargs": "^17.7.2"
}
}