-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.49 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.49 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
{
"name": "code-brick",
"version": "0.2.0",
"description": "A framework-agnostic CLI tool for managing reusable code templates. Save, manage, and apply code snippets across projects.",
"type": "module",
"main": "dist/index.js",
"bin": {
"brick": "dist/index.js"
},
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean",
"dev": "tsup src/index.ts --format esm --watch",
"start": "node dist/index.js",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"cli",
"templates",
"code-generator",
"scaffolding",
"boilerplate",
"brick",
"snippet",
"reusable",
"code-templates",
"developer-tools"
],
"author": "seeebbii",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/seeebbii/code-brick.git"
},
"homepage": "https://github.com/seeebbii/code-brick#readme",
"bugs": {
"url": "https://github.com/seeebbii/code-brick/issues"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"archiver": "^7.0.1",
"commander": "^12.0.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"picocolors": "^1.0.0",
"tar": "^7.5.2"
},
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.0",
"@types/tar": "^6.1.13",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
]
}