-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.63 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.63 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "own-term",
"version": "0.1.0",
"description": "Create a beautiful, interactive terminal portfolio — installable via npx or npm i -g",
"keywords": [
"terminal",
"portfolio",
"cli",
"interactive",
"developer-tools",
"portfolio-generator",
"terminal-portfolio",
"developer-portfolio",
"npx",
"framework",
"ascii",
"typescript",
"resume",
"themes",
"plugins"
],
"author": "Biki Dev <Bikikalitadev@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Biki-dev/own-term"
},
"bin": {
"own-term": "./bin/cli.js",
"termfolio": "./bin/cli.js"
},
"main": "./bin/cli.js",
"files": [
"bin",
"templates"
],
"scripts": {
"build": "tsc",
"postbuild": "chmod +x bin/cli.js || echo \"Skipping chmod on Windows\"",
"dev": "ts-node src/cli.ts",
"test": "vitest",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm test"
},
"dependencies": {
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"cli-table3": "^0.6.3",
"gradient-string": "^2.0.2",
"inquirer": "^9.2.12",
"open": "^10.0.3"
},
"devDependencies": {
"@types/gradient-string": "^1.1.6",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^1.1.1"
},
"engines": {
"node": ">=18.0.0"
}
}