@sunasteriskrnd/takumi 1.0.0-dev.5 → 1.0.0-dev.50

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.
Files changed (3) hide show
  1. package/README.md +31 -36
  2. package/dist/index.js +82085 -68335
  3. package/package.json +14 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunasteriskrnd/takumi",
3
- "version": "1.0.0-dev.5",
3
+ "version": "1.0.0-dev.50",
4
4
  "description": "CLI tool for bootstrapping and managing Takumi projects",
5
5
  "type": "module",
6
6
  "repository": {
@@ -19,10 +19,15 @@
19
19
  "dist/index.js"
20
20
  ],
21
21
  "scripts": {
22
- "dev": "bun run src/index.ts",
23
- "build": "bun build src/index.ts --outdir dist --target node --external @octokit/rest --external better-sqlite3 --external yauzl-promise --external @node-rs/crc32 && node -e \"const fs=require('fs'),f='dist/index.js',c=fs.readFileSync(f,'utf-8');fs.writeFileSync(f,c.replace(/^#!.*\\n\\/\\/ @bun\\n/,''))\"",
22
+ "tkm": "bun scripts/run-cli.ts --",
23
+ "dev": "bun scripts/run-cli.ts --config src/lib/build-config/dev.json --",
24
+ "build": "bun scripts/build-cli.ts",
25
+ "build:dev": "bun scripts/build-cli.ts --config src/lib/build-config/dev.json",
26
+ "compile": "bun scripts/build-cli.ts --compile",
27
+ "compile:dev": "bun scripts/build-cli.ts --compile --config src/lib/build-config/dev.json",
24
28
  "verify:package": "node scripts/prepublish-check.js",
25
29
  "test": "bun test",
30
+ "test:ci": "NON_INTERACTIVE=true CI_SAFE_MODE=true bun test",
26
31
  "test:integration": "CK_RUN_CLI_INTEGRATION=1 bun test tests/integration/cli.test.ts",
27
32
  "test:watch": "bun test --watch",
28
33
  "test:quick": "./scripts/dev-quick-start.sh test",
@@ -54,15 +59,16 @@
54
59
  "@clack/prompts": "^0.7.0",
55
60
  "@octokit/rest": "^22.0.0",
56
61
  "@supabase/supabase-js": "^2.106.1",
57
- "better-sqlite3": "^12.6.2",
58
62
  "cac": "^6.7.14",
59
- "cli-progress": "^3.12.0",
60
63
  "compare-versions": "^6.1.1",
61
64
  "diff": "^8.0.3",
62
65
  "fs-extra": "^11.2.0",
63
66
  "gray-matter": "^4.0.3",
64
67
  "ignore": "^5.3.2",
65
- "minimatch": "^10.1.1",
68
+ "kysely": "^0.29.3",
69
+ "kysely-bun-worker": "^2.0.0",
70
+ "kysely-wasm": "^2.0.0",
71
+ "node-sqlite3-wasm": "^0.8.59",
66
72
  "open": "^10.1.0",
67
73
  "ora": "^8.0.0",
68
74
  "p-limit": "^7.2.0",
@@ -70,6 +76,7 @@
70
76
  "picomatch": "^4.0.3",
71
77
  "proper-lockfile": "^4.1.2",
72
78
  "semver": "^7.7.3",
79
+ "shell-quote": "^1.9.0",
73
80
  "tar": "^7.4.3",
74
81
  "tmp": "^0.2.3",
75
82
  "yauzl-promise": "^4.0.0",
@@ -79,15 +86,14 @@
79
86
  "@biomejs/biome": "^1.9.4",
80
87
  "@semantic-release/changelog": "^6.0.3",
81
88
  "@semantic-release/git": "^10.0.1",
82
- "@types/better-sqlite3": "^7.6.13",
83
89
  "@types/bun": "latest",
84
- "@types/cli-progress": "^3.11.6",
85
90
  "@types/diff": "^8.0.0",
86
91
  "@types/fs-extra": "^11.0.4",
87
92
  "@types/node": "^22.19.7",
88
93
  "@types/picomatch": "^4.0.2",
89
94
  "@types/proper-lockfile": "^4.1.4",
90
95
  "@types/semver": "^7.7.1",
96
+ "@types/shell-quote": "^1.7.5",
91
97
  "@types/tar": "^6.1.13",
92
98
  "@types/tmp": "^0.2.6",
93
99
  "@types/yauzl-promise": "^4.0.1",