-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "kunst",
"version": "1.0.4",
"description": "A CLI tool that bootstraps an ALX project.",
"author": "Ifedayo Oni <[email protected]>",
"homepage": "https://github.com/ifedayoprince/kunst",
"repository": "https://github.com/ifedayoprince/kunst",
"keywords": [
"typescript",
"scaffold",
"bootstrap",
"intranet",
"kunst",
"konst",
"alx"
],
"license": "MIT",
"main": "./dist/index.js",
"bin": "./dist/cli.js",
"files": [
"dist/**/*",
"!dist/**/*.test.js"
],
"scripts": {
"dev": "cd test && ts-node ./../src/cli.ts everything_object.html",
"clean": "rimraf ./dist/ ./exec/",
"build": "npm run clean && tsc",
"test": "npm run build && ava --verbose",
"bundle": "npm run build && pkg . --out-dir ./exec/",
"publish:npm": "npm run build && npm publish"
},
"devDependencies": {
"ava": "^2.2.0",
"rimraf": "^2.6.3",
"ts-node": "^8.3.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@tsconfig/recommended": "^1.0.3",
"@types/figlet": "^1.5.8",
"@types/node": "^20.10.7",
"chalk": "^4.1.2",
"cheerio": "1.0.0-rc.12",
"commander": "^2.20.0",
"figlet": "^1.7.0"
}
}