cngkit 1.0.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/dist/cli.d.cts ADDED
@@ -0,0 +1 @@
1
+ #!/usr/bin/env node
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "cngkit",
3
+ "version": "1.0.0",
4
+ "description": "Opinionated Curly.ng CLI kit for repo sync and website tooling.",
5
+ "type": "module",
6
+ "bin": {
7
+ "cngkit": "dist/cli.cjs"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "LICENSE",
12
+ "README.md"
13
+ ],
14
+ "homepage": "https://curly.ng/donate",
15
+ "funding": {
16
+ "type": "custom",
17
+ "url": "https://curly.ng/donate"
18
+ },
19
+ "scripts": {
20
+ "build": "tsup --config tsup.config.ts && chmod +x dist/cli.cjs",
21
+ "clean": "rm -rf dist *.tsbuildinfo",
22
+ "dev": "tsx src/cli.ts",
23
+ "format": "prettier --write README.md src tsconfig.json tsup.config.ts package.json",
24
+ "lint": "eslint src",
25
+ "prepublishOnly": "pnpm run build && pnpm run smoke",
26
+ "smoke": "node dist/cli.cjs --help && node dist/cli.cjs --version && node dist/cli.cjs login --help && node dist/cli.cjs share --help && node dist/cli.cjs join --help && node dist/cli.cjs scrub --help",
27
+ "smoke:docker": "bash scripts/smoke-docker.sh",
28
+ "test": "node --import tsx --test \"src/**/*.test.ts\"",
29
+ "typecheck": "tsc -p tsconfig.json --noEmit"
30
+ },
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
34
+ "engines": {
35
+ "node": ">=20"
36
+ },
37
+ "license": "Beerware",
38
+ "devDependencies": {
39
+ "@cng/client": "workspace:*",
40
+ "@types/node": "^20",
41
+ "@types/ws": "^8.18.1",
42
+ "cac": "^6.7.14",
43
+ "chokidar": "^4.0.3",
44
+ "eslint": "^9.15.0",
45
+ "prettier": "^3.8.1",
46
+ "tsup": "^8.5.0",
47
+ "tsx": "^4.21.0",
48
+ "typescript": "5.9.3",
49
+ "ws": "^8.18.3",
50
+ "zod": "^4.3.6"
51
+ }
52
+ }