-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.02 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
{
"name": "@css-ch/myjournal",
"version": "1.7.0",
"description": "A journal for apprentices",
"main": "dist/src/index.js",
"bin": {
"myjournal": "./dist/src/index.js"
},
"scripts": {
"publish": "npm run build && npm publish",
"build": "tsc && cpx \"src/templates/*.md\" dist/src/templates",
"start": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/css-ch/myJournal.git"
},
"keywords": [
"CLI",
"journal",
"myjournal"
],
"author": "David Gataric",
"license": "ISC",
"bugs": {
"url": "https://github.com/css-ch/myJournal/issues"
},
"homepage": "https://github.com/css-ch/myJournal#readme",
"dependencies": {
"chart.js": "4.4.9",
"chartjs-node-canvas": "5.0.0",
"commander": "13.1.0",
"inquirer": "12.5.2",
"ts-node": "10.9.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@types/node": "22.14.1",
"cpx": "1.5.0",
"typescript": "5.8.3"
}
}