-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 889 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
{
"name": "project-albatross",
"version": "0.0.11",
"repository": {
"type": "git",
"url": "https://github.com/Digital-Defiance/project-albatross"
},
"type": "module",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"build:run": "tsc && node dist/main.js",
"format": "prettier --write \"src/**/*.{js,ts,tsx,css,md,json}\"",
"format:check": "prettier --check \"src/**/*.{js,ts,tsx,css,md,json}\"",
"prepack": "tsc",
"start": "node dist/main.js"
},
"dependencies": {
"inquirer": "^9.2.10",
"mustache": "^4.2.0",
"validator": "^13.11.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/mustache": "^4.2.2",
"@types/validator": "^13.11.1",
"plop": "^3.1.2",
"prettier": "3.0.3",
"typescript": "^5.2.2"
},
"bin": {
"albatross": "./dist/main.js"
},
"files": [
"dist"
]
}