-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.82 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.82 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
71
72
73
74
{
"name": "@nbtca/prompt",
"version": "1.0.24",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"bin": {
"nbtca": "bin/nbtca-welcome.js",
"nbtca-welcome": "bin/nbtca-welcome.js"
},
"files": [
"dist",
"bin/nbtca-welcome.js",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"dev:watch": "tsx watch src/index.ts",
"build": "tsc",
"postbuild": "mkdir -p dist/logo dist/i18n/locales && cp src/logo/logo.txt dist/logo/ && cp src/logo/ascii-logo.txt dist/logo/ && cp src/i18n/locales/*.json dist/i18n/locales/",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"test": "npm run build && bash scripts/test-cli.sh"
},
"keywords": [
"cli",
"terminal",
"welcome",
"nbtca",
"ningbotech",
"computer-association",
"tui",
"interactive"
],
"dependencies": {
"@clack/prompts": "^1.0.1",
"axios": "^1.6.2",
"chalk": "^5.4.1",
"gradient-string": "^3.0.0",
"ical.js": "^2.0.1",
"marked": "^11.1.0",
"marked-terminal": "^7.0.0",
"open": "^10.1.2"
},
"devDependencies": {
"@types/gradient-string": "^1.1.6",
"@types/marked-terminal": "^3.1.3",
"@types/node": "^20.11.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.12.0"
},
"author": "m1ngsama <contact@m1ng.space>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/nbtca/prompt.git"
},
"bugs": {
"url": "https://github.com/nbtca/prompt/issues"
},
"homepage": "https://github.com/nbtca/prompt#readme",
"description": "NBTCA Prompt - Minimalist CLI tool for NingboTech Computer Association"
}