-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.64 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
{
"name": "@garyr/pt-cli",
"version": "0.38.0",
"description": "Project Template CLI - Learn structures and initialize projects",
"main": "dist/index.js",
"bin": {
"pt": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"start": "tsx src/index.ts",
"dev": "tsx src/index.ts",
"test": "node --import tsx --test tests/**/*.test.ts",
"test:sequential": "node --import tsx --test tests/config.test.ts && node --import tsx --test tests/init.test.ts && node --import tsx --test tests/learn.test.ts && node --import tsx --test tests/substitute.test.ts && node --import tsx --test tests/config-utils.test.ts",
"prepublishOnly": "npm run build",
"build:linux": "bun build ./src/index.ts --compile --minify --target=bun-linux-x64 --outfile ../BUILD/pt-cli/pt-linux",
"build:macos": "bun build ./src/index.ts --compile --minify --target=bun-darwin-x64 --outfile ../BUILD/pt-cli/pt-macos",
"build:windows": "bun build ./src/index.ts --compile --minify --target=bun-windows-x64 --outfile ../BUILD/pt-cli/pt-win.exe",
"build:all": "npm run build:linux && npm run build:macos && npm run build:windows"
},
"license": "MIT",
"keywords": [
"project management",
"template",
"utility"
],
"repository": {
"url": "https://github.com/garyritchie/pt-cli"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"inquirer": "^12.3.0",
"tar": "^7.5.15",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^22.0.0",
"@types/tar": "^6.1.13",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.6.0"
}
}