code-brick 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "code-brick",
3
+ "version": "0.1.0",
4
+ "description": "A framework-agnostic CLI tool for managing reusable code templates. Save, manage, and apply code snippets across projects.",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "brick": "dist/index.js"
9
+ },
10
+ "scripts": {
11
+ "build": "tsup src/index.ts --format esm --dts --clean",
12
+ "dev": "tsup src/index.ts --format esm --watch",
13
+ "start": "node dist/index.js",
14
+ "lint": "eslint src/",
15
+ "typecheck": "tsc --noEmit",
16
+ "prepublishOnly": "npm run build"
17
+ },
18
+ "keywords": [
19
+ "cli",
20
+ "templates",
21
+ "code-generator",
22
+ "scaffolding",
23
+ "boilerplate",
24
+ "brick",
25
+ "snippet",
26
+ "reusable",
27
+ "code-templates",
28
+ "developer-tools"
29
+ ],
30
+ "author": "seeebbii",
31
+ "license": "MIT",
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "git+https://github.com/seeebbii/code-brick.git"
35
+ },
36
+ "homepage": "https://github.com/seeebbii/code-brick#readme",
37
+ "bugs": {
38
+ "url": "https://github.com/seeebbii/code-brick/issues"
39
+ },
40
+ "dependencies": {
41
+ "@clack/prompts": "^0.7.0",
42
+ "commander": "^12.0.0",
43
+ "fs-extra": "^11.2.0",
44
+ "picocolors": "^1.0.0",
45
+ "fast-glob": "^3.3.2"
46
+ },
47
+ "devDependencies": {
48
+ "@types/fs-extra": "^11.0.4",
49
+ "@types/node": "^20.11.0",
50
+ "tsup": "^8.0.1",
51
+ "typescript": "^5.3.3"
52
+ },
53
+ "engines": {
54
+ "node": ">=18.0.0"
55
+ },
56
+ "files": [
57
+ "dist"
58
+ ]
59
+ }