cngkit 1.1.1 → 1.1.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cngkit",
3
- "version": "1.1.1",
4
- "description": "Opinionated Curly.ng CLI kit for repo sync and website tooling.",
3
+ "version": "1.1.3",
4
+ "description": "Opinionated Curly.ng CLI kit for Coderoom collaboration and website tooling.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "cngkit": "dist/cli.cjs"
@@ -11,10 +11,21 @@
11
11
  "LICENSE",
12
12
  "README.md"
13
13
  ],
14
- "homepage": "https://curly.ng/donate",
14
+ "homepage": "https://curly.ng/support",
15
15
  "funding": {
16
16
  "type": "custom",
17
- "url": "https://curly.ng/donate"
17
+ "url": "https://curly.ng/support"
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 help && node dist/cli.cjs help knowledges && node dist/cli.cjs help coderoom && node dist/cli.cjs login --help && node dist/cli.cjs coderoom --help && node dist/cli.cjs coderoom share --help && node dist/cli.cjs coderoom join --help && node dist/cli.cjs scrub --help && node dist/cli.cjs knowledges --help && node dist/cli.cjs knowledges audiences --help && node dist/cli.cjs knowledges search --help && node dist/cli.cjs knowledges read --help && node dist/cli.cjs knowledges grep --help && node dist/cli.cjs knowledges glob --help && node dist/cli.cjs knowledges list --help && node dist/cli.cjs knowledges files --help && node dist/cli.cjs knowledges status --help",
27
+ "smoke:docker": "bash scripts/smoke-docker.sh",
28
+ "typecheck": "tsc -p tsconfig.json --noEmit"
18
29
  },
19
30
  "publishConfig": {
20
31
  "access": "public"
@@ -24,6 +35,7 @@
24
35
  },
25
36
  "license": "Beerware",
26
37
  "devDependencies": {
38
+ "@cng/client": "workspace:*",
27
39
  "@types/node": "^20",
28
40
  "@types/ws": "^8.18.1",
29
41
  "cac": "^6.7.14",
@@ -34,18 +46,6 @@
34
46
  "tsx": "^4.21.0",
35
47
  "typescript": "5.9.3",
36
48
  "ws": "^8.18.3",
37
- "zod": "^4.3.6",
38
- "@cng/client": "0.1.0"
39
- },
40
- "scripts": {
41
- "build": "tsup --config tsup.config.ts && chmod +x dist/cli.cjs",
42
- "clean": "rm -rf dist *.tsbuildinfo",
43
- "dev": "tsx src/cli.ts",
44
- "format": "prettier --write README.md src tsconfig.json tsup.config.ts package.json",
45
- "lint": "eslint src",
46
- "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 && node dist/cli.cjs knowledges --help && node dist/cli.cjs knowledges audiences --help && node dist/cli.cjs knowledges search --help && node dist/cli.cjs knowledges read --help && node dist/cli.cjs knowledges grep --help && node dist/cli.cjs knowledges glob --help",
47
- "smoke:docker": "bash scripts/smoke-docker.sh",
48
- "test": "node --import tsx --test \"src/**/*.test.ts\"",
49
- "typecheck": "tsc -p tsconfig.json --noEmit"
49
+ "zod": "^4.3.6"
50
50
  }
51
- }
51
+ }