llmstxt-cli 0.1.0 → 0.2.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/LICENCE +24 -0
- package/dist/index.js +253 -24
- package/package.json +10 -10
package/LICENCE
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 David Dias
|
|
4
|
+
|
|
5
|
+
Website: [https://thedaviddias.com](https://thedaviddias.com)
|
|
6
|
+
GitHub: [https://github.com/thedaviddias](https://github.com/thedaviddias)
|
|
7
|
+
|
|
8
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
9
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
10
|
+
in the Software without restriction, including without limitation the rights
|
|
11
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
12
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
13
|
+
furnished to do so, subject to the following conditions:
|
|
14
|
+
|
|
15
|
+
The above copyright notice and this permission notice shall be included in all
|
|
16
|
+
copies or substantial portions of the Software.
|
|
17
|
+
|
|
18
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
19
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
20
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
21
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
22
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
23
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
24
|
+
SOFTWARE.
|
package/dist/index.js
CHANGED
|
@@ -6417,6 +6417,9 @@ import {
|
|
|
6417
6417
|
import { homedir as homedir2 } from "os";
|
|
6418
6418
|
import { dirname as dirname2, join as join3, relative, resolve } from "path";
|
|
6419
6419
|
var home = homedir2();
|
|
6420
|
+
var configHome = process.env.XDG_CONFIG_HOME?.trim() || join3(home, ".config");
|
|
6421
|
+
var codexHome = process.env.CODEX_HOME?.trim() || join3(home, ".codex");
|
|
6422
|
+
var claudeHome = process.env.CLAUDE_CONFIG_DIR?.trim() || join3(home, ".claude");
|
|
6420
6423
|
var CANONICAL_DIR = ".agents/skills";
|
|
6421
6424
|
function sanitizeSlug(slug) {
|
|
6422
6425
|
if (!slug || typeof slug !== "string") {
|
|
@@ -6435,12 +6438,82 @@ function assertPathContainment(fullPath, parentDir) {
|
|
|
6435
6438
|
}
|
|
6436
6439
|
}
|
|
6437
6440
|
var agents = [
|
|
6441
|
+
{
|
|
6442
|
+
name: "adal",
|
|
6443
|
+
displayName: "AdaL",
|
|
6444
|
+
skillsDir: ".adal/skills",
|
|
6445
|
+
isUniversal: false,
|
|
6446
|
+
detectInstalled: () => existsSync2(join3(home, ".adal"))
|
|
6447
|
+
},
|
|
6448
|
+
{
|
|
6449
|
+
name: "amp",
|
|
6450
|
+
displayName: "Amp",
|
|
6451
|
+
skillsDir: ".agents/skills",
|
|
6452
|
+
isUniversal: true,
|
|
6453
|
+
detectInstalled: () => existsSync2(join3(configHome, "amp"))
|
|
6454
|
+
},
|
|
6455
|
+
{
|
|
6456
|
+
name: "antigravity",
|
|
6457
|
+
displayName: "Antigravity",
|
|
6458
|
+
skillsDir: ".agent/skills",
|
|
6459
|
+
isUniversal: false,
|
|
6460
|
+
detectInstalled: () => existsSync2(join3(process.cwd(), ".agent")) || existsSync2(join3(home, ".gemini/antigravity"))
|
|
6461
|
+
},
|
|
6462
|
+
{
|
|
6463
|
+
name: "augment",
|
|
6464
|
+
displayName: "Augment",
|
|
6465
|
+
skillsDir: ".augment/skills",
|
|
6466
|
+
isUniversal: false,
|
|
6467
|
+
detectInstalled: () => existsSync2(join3(home, ".augment"))
|
|
6468
|
+
},
|
|
6438
6469
|
{
|
|
6439
6470
|
name: "claude-code",
|
|
6440
6471
|
displayName: "Claude Code",
|
|
6441
6472
|
skillsDir: ".claude/skills",
|
|
6442
6473
|
isUniversal: false,
|
|
6443
|
-
detectInstalled: () => existsSync2(
|
|
6474
|
+
detectInstalled: () => existsSync2(claudeHome)
|
|
6475
|
+
},
|
|
6476
|
+
{
|
|
6477
|
+
name: "cline",
|
|
6478
|
+
displayName: "Cline",
|
|
6479
|
+
skillsDir: ".cline/skills",
|
|
6480
|
+
isUniversal: false,
|
|
6481
|
+
detectInstalled: () => existsSync2(join3(home, ".cline"))
|
|
6482
|
+
},
|
|
6483
|
+
{
|
|
6484
|
+
name: "codebuddy",
|
|
6485
|
+
displayName: "CodeBuddy",
|
|
6486
|
+
skillsDir: ".codebuddy/skills",
|
|
6487
|
+
isUniversal: false,
|
|
6488
|
+
detectInstalled: () => existsSync2(join3(process.cwd(), ".codebuddy")) || existsSync2(join3(home, ".codebuddy"))
|
|
6489
|
+
},
|
|
6490
|
+
{
|
|
6491
|
+
name: "codex",
|
|
6492
|
+
displayName: "Codex",
|
|
6493
|
+
skillsDir: ".agents/skills",
|
|
6494
|
+
isUniversal: true,
|
|
6495
|
+
detectInstalled: () => existsSync2(codexHome) || existsSync2("/etc/codex")
|
|
6496
|
+
},
|
|
6497
|
+
{
|
|
6498
|
+
name: "command-code",
|
|
6499
|
+
displayName: "Command Code",
|
|
6500
|
+
skillsDir: ".commandcode/skills",
|
|
6501
|
+
isUniversal: false,
|
|
6502
|
+
detectInstalled: () => existsSync2(join3(home, ".commandcode"))
|
|
6503
|
+
},
|
|
6504
|
+
{
|
|
6505
|
+
name: "continue",
|
|
6506
|
+
displayName: "Continue",
|
|
6507
|
+
skillsDir: ".continue/skills",
|
|
6508
|
+
isUniversal: false,
|
|
6509
|
+
detectInstalled: () => existsSync2(join3(process.cwd(), ".continue")) || existsSync2(join3(home, ".continue"))
|
|
6510
|
+
},
|
|
6511
|
+
{
|
|
6512
|
+
name: "crush",
|
|
6513
|
+
displayName: "Crush",
|
|
6514
|
+
skillsDir: ".crush/skills",
|
|
6515
|
+
isUniversal: false,
|
|
6516
|
+
detectInstalled: () => existsSync2(join3(configHome, "crush"))
|
|
6444
6517
|
},
|
|
6445
6518
|
{
|
|
6446
6519
|
name: "cursor",
|
|
@@ -6450,32 +6523,186 @@ var agents = [
|
|
|
6450
6523
|
detectInstalled: () => existsSync2(join3(home, ".cursor"))
|
|
6451
6524
|
},
|
|
6452
6525
|
{
|
|
6453
|
-
name: "
|
|
6454
|
-
displayName: "
|
|
6526
|
+
name: "droid",
|
|
6527
|
+
displayName: "Droid",
|
|
6528
|
+
skillsDir: ".factory/skills",
|
|
6529
|
+
isUniversal: false,
|
|
6530
|
+
detectInstalled: () => existsSync2(join3(home, ".factory"))
|
|
6531
|
+
},
|
|
6532
|
+
{
|
|
6533
|
+
name: "gemini-cli",
|
|
6534
|
+
displayName: "Gemini CLI",
|
|
6455
6535
|
skillsDir: ".agents/skills",
|
|
6456
6536
|
isUniversal: true,
|
|
6457
|
-
detectInstalled: () => existsSync2(join3(home, ".
|
|
6537
|
+
detectInstalled: () => existsSync2(join3(home, ".gemini"))
|
|
6458
6538
|
},
|
|
6459
6539
|
{
|
|
6460
|
-
name: "
|
|
6461
|
-
displayName: "
|
|
6540
|
+
name: "github-copilot",
|
|
6541
|
+
displayName: "GitHub Copilot",
|
|
6462
6542
|
skillsDir: ".agents/skills",
|
|
6463
6543
|
isUniversal: true,
|
|
6464
|
-
detectInstalled: () => existsSync2(join3(home, ".
|
|
6544
|
+
detectInstalled: () => existsSync2(join3(process.cwd(), ".github")) || existsSync2(join3(home, ".copilot"))
|
|
6545
|
+
},
|
|
6546
|
+
{
|
|
6547
|
+
name: "goose",
|
|
6548
|
+
displayName: "Goose",
|
|
6549
|
+
skillsDir: ".goose/skills",
|
|
6550
|
+
isUniversal: false,
|
|
6551
|
+
detectInstalled: () => existsSync2(join3(configHome, "goose"))
|
|
6552
|
+
},
|
|
6553
|
+
{
|
|
6554
|
+
name: "iflow-cli",
|
|
6555
|
+
displayName: "iFlow CLI",
|
|
6556
|
+
skillsDir: ".iflow/skills",
|
|
6557
|
+
isUniversal: false,
|
|
6558
|
+
detectInstalled: () => existsSync2(join3(home, ".iflow"))
|
|
6559
|
+
},
|
|
6560
|
+
{
|
|
6561
|
+
name: "junie",
|
|
6562
|
+
displayName: "Junie",
|
|
6563
|
+
skillsDir: ".junie/skills",
|
|
6564
|
+
isUniversal: false,
|
|
6565
|
+
detectInstalled: () => existsSync2(join3(home, ".junie"))
|
|
6566
|
+
},
|
|
6567
|
+
{
|
|
6568
|
+
name: "kilo",
|
|
6569
|
+
displayName: "Kilo Code",
|
|
6570
|
+
skillsDir: ".kilocode/skills",
|
|
6571
|
+
isUniversal: false,
|
|
6572
|
+
detectInstalled: () => existsSync2(join3(home, ".kilocode"))
|
|
6573
|
+
},
|
|
6574
|
+
{
|
|
6575
|
+
name: "kimi-cli",
|
|
6576
|
+
displayName: "Kimi Code CLI",
|
|
6577
|
+
skillsDir: ".agents/skills",
|
|
6578
|
+
isUniversal: true,
|
|
6579
|
+
detectInstalled: () => existsSync2(join3(home, ".kimi"))
|
|
6580
|
+
},
|
|
6581
|
+
{
|
|
6582
|
+
name: "kiro-cli",
|
|
6583
|
+
displayName: "Kiro CLI",
|
|
6584
|
+
skillsDir: ".kiro/skills",
|
|
6585
|
+
isUniversal: false,
|
|
6586
|
+
detectInstalled: () => existsSync2(join3(home, ".kiro"))
|
|
6587
|
+
},
|
|
6588
|
+
{
|
|
6589
|
+
name: "kode",
|
|
6590
|
+
displayName: "Kode",
|
|
6591
|
+
skillsDir: ".kode/skills",
|
|
6592
|
+
isUniversal: false,
|
|
6593
|
+
detectInstalled: () => existsSync2(join3(home, ".kode"))
|
|
6594
|
+
},
|
|
6595
|
+
{
|
|
6596
|
+
name: "mcpjam",
|
|
6597
|
+
displayName: "MCPJam",
|
|
6598
|
+
skillsDir: ".mcpjam/skills",
|
|
6599
|
+
isUniversal: false,
|
|
6600
|
+
detectInstalled: () => existsSync2(join3(home, ".mcpjam"))
|
|
6601
|
+
},
|
|
6602
|
+
{
|
|
6603
|
+
name: "mistral-vibe",
|
|
6604
|
+
displayName: "Mistral Vibe",
|
|
6605
|
+
skillsDir: ".vibe/skills",
|
|
6606
|
+
isUniversal: false,
|
|
6607
|
+
detectInstalled: () => existsSync2(join3(home, ".vibe"))
|
|
6608
|
+
},
|
|
6609
|
+
{
|
|
6610
|
+
name: "mux",
|
|
6611
|
+
displayName: "Mux",
|
|
6612
|
+
skillsDir: ".mux/skills",
|
|
6613
|
+
isUniversal: false,
|
|
6614
|
+
detectInstalled: () => existsSync2(join3(home, ".mux"))
|
|
6615
|
+
},
|
|
6616
|
+
{
|
|
6617
|
+
name: "neovate",
|
|
6618
|
+
displayName: "Neovate",
|
|
6619
|
+
skillsDir: ".neovate/skills",
|
|
6620
|
+
isUniversal: false,
|
|
6621
|
+
detectInstalled: () => existsSync2(join3(home, ".neovate"))
|
|
6622
|
+
},
|
|
6623
|
+
{
|
|
6624
|
+
name: "openclaw",
|
|
6625
|
+
displayName: "OpenClaw",
|
|
6626
|
+
skillsDir: "skills",
|
|
6627
|
+
isUniversal: false,
|
|
6628
|
+
detectInstalled: () => existsSync2(join3(home, ".openclaw")) || existsSync2(join3(home, ".clawdbot")) || existsSync2(join3(home, ".moltbot"))
|
|
6629
|
+
},
|
|
6630
|
+
{
|
|
6631
|
+
name: "opencode",
|
|
6632
|
+
displayName: "OpenCode",
|
|
6633
|
+
skillsDir: ".agents/skills",
|
|
6634
|
+
isUniversal: true,
|
|
6635
|
+
detectInstalled: () => existsSync2(join3(configHome, "opencode")) || existsSync2(join3(claudeHome, "skills"))
|
|
6636
|
+
},
|
|
6637
|
+
{
|
|
6638
|
+
name: "openhands",
|
|
6639
|
+
displayName: "OpenHands",
|
|
6640
|
+
skillsDir: ".openhands/skills",
|
|
6641
|
+
isUniversal: false,
|
|
6642
|
+
detectInstalled: () => existsSync2(join3(home, ".openhands"))
|
|
6643
|
+
},
|
|
6644
|
+
{
|
|
6645
|
+
name: "pi",
|
|
6646
|
+
displayName: "Pi",
|
|
6647
|
+
skillsDir: ".pi/skills",
|
|
6648
|
+
isUniversal: false,
|
|
6649
|
+
detectInstalled: () => existsSync2(join3(home, ".pi/agent"))
|
|
6650
|
+
},
|
|
6651
|
+
{
|
|
6652
|
+
name: "pochi",
|
|
6653
|
+
displayName: "Pochi",
|
|
6654
|
+
skillsDir: ".pochi/skills",
|
|
6655
|
+
isUniversal: false,
|
|
6656
|
+
detectInstalled: () => existsSync2(join3(home, ".pochi"))
|
|
6657
|
+
},
|
|
6658
|
+
{
|
|
6659
|
+
name: "qoder",
|
|
6660
|
+
displayName: "Qoder",
|
|
6661
|
+
skillsDir: ".qoder/skills",
|
|
6662
|
+
isUniversal: false,
|
|
6663
|
+
detectInstalled: () => existsSync2(join3(home, ".qoder"))
|
|
6664
|
+
},
|
|
6665
|
+
{
|
|
6666
|
+
name: "qwen-code",
|
|
6667
|
+
displayName: "Qwen Code",
|
|
6668
|
+
skillsDir: ".qwen/skills",
|
|
6669
|
+
isUniversal: false,
|
|
6670
|
+
detectInstalled: () => existsSync2(join3(home, ".qwen"))
|
|
6671
|
+
},
|
|
6672
|
+
{
|
|
6673
|
+
name: "roo",
|
|
6674
|
+
displayName: "Roo Code",
|
|
6675
|
+
skillsDir: ".roo/skills",
|
|
6676
|
+
isUniversal: false,
|
|
6677
|
+
detectInstalled: () => existsSync2(join3(home, ".roo"))
|
|
6678
|
+
},
|
|
6679
|
+
{
|
|
6680
|
+
name: "trae",
|
|
6681
|
+
displayName: "Trae",
|
|
6682
|
+
skillsDir: ".trae/skills",
|
|
6683
|
+
isUniversal: false,
|
|
6684
|
+
detectInstalled: () => existsSync2(join3(home, ".trae"))
|
|
6685
|
+
},
|
|
6686
|
+
{
|
|
6687
|
+
name: "trae-cn",
|
|
6688
|
+
displayName: "Trae CN",
|
|
6689
|
+
skillsDir: ".trae/skills",
|
|
6690
|
+
isUniversal: false,
|
|
6691
|
+
detectInstalled: () => existsSync2(join3(home, ".trae-cn"))
|
|
6465
6692
|
},
|
|
6466
6693
|
{
|
|
6467
6694
|
name: "windsurf",
|
|
6468
6695
|
displayName: "Windsurf",
|
|
6469
6696
|
skillsDir: ".windsurf/skills",
|
|
6470
6697
|
isUniversal: false,
|
|
6471
|
-
detectInstalled: () => existsSync2(join3(home, ".codeium
|
|
6698
|
+
detectInstalled: () => existsSync2(join3(home, ".codeium/windsurf"))
|
|
6472
6699
|
},
|
|
6473
6700
|
{
|
|
6474
|
-
name: "
|
|
6475
|
-
displayName: "
|
|
6476
|
-
skillsDir: ".
|
|
6701
|
+
name: "zencoder",
|
|
6702
|
+
displayName: "Zencoder",
|
|
6703
|
+
skillsDir: ".zencoder/skills",
|
|
6477
6704
|
isUniversal: false,
|
|
6478
|
-
detectInstalled: () => existsSync2(join3(home, ".
|
|
6705
|
+
detectInstalled: () => existsSync2(join3(home, ".zencoder"))
|
|
6479
6706
|
}
|
|
6480
6707
|
];
|
|
6481
6708
|
function detectInstalledAgents() {
|
|
@@ -6526,6 +6753,15 @@ function removeAgentSkill({ projectDir, slug, agent }) {
|
|
|
6526
6753
|
} catch {
|
|
6527
6754
|
}
|
|
6528
6755
|
}
|
|
6756
|
+
function getGitignoreEntries() {
|
|
6757
|
+
const dirs = /* @__PURE__ */ new Set([`${CANONICAL_DIR}/`]);
|
|
6758
|
+
for (const agent of agents) {
|
|
6759
|
+
if (!agent.isUniversal) {
|
|
6760
|
+
dirs.add(`${agent.skillsDir}/`);
|
|
6761
|
+
}
|
|
6762
|
+
}
|
|
6763
|
+
return [...dirs].sort();
|
|
6764
|
+
}
|
|
6529
6765
|
|
|
6530
6766
|
// src/lib/storage.ts
|
|
6531
6767
|
var LLMS_DIR = ".llms";
|
|
@@ -6625,14 +6861,7 @@ function isInstalled({ projectDir, slug }) {
|
|
|
6625
6861
|
function addToGitignore(projectDir) {
|
|
6626
6862
|
try {
|
|
6627
6863
|
const gitignorePath = join4(projectDir, ".gitignore");
|
|
6628
|
-
const gitignoreEntries = [
|
|
6629
|
-
".llms/",
|
|
6630
|
-
".agents/skills/",
|
|
6631
|
-
".claude/skills/",
|
|
6632
|
-
".cursor/skills/",
|
|
6633
|
-
".windsurf/skills/",
|
|
6634
|
-
".cline/skills/"
|
|
6635
|
-
];
|
|
6864
|
+
const gitignoreEntries = [".llms/", ...getGitignoreEntries()];
|
|
6636
6865
|
if (existsSync3(gitignorePath)) {
|
|
6637
6866
|
const content = readFileSync3(gitignorePath, "utf-8");
|
|
6638
6867
|
const missing = gitignoreEntries.filter((e) => !content.includes(e));
|
|
@@ -7620,7 +7849,7 @@ async function fetchLlmsTxt({ url, existingEtag }) {
|
|
|
7620
7849
|
|
|
7621
7850
|
// src/lib/telemetry.ts
|
|
7622
7851
|
var TELEMETRY_ENDPOINT = "https://llmstxt.directory/api/cli/telemetry";
|
|
7623
|
-
var CLI_VERSION = "0.
|
|
7852
|
+
var CLI_VERSION = "0.2.0";
|
|
7624
7853
|
var CI_ENV_VARS = ["CI", "GITHUB_ACTIONS", "GITLAB_CI", "CIRCLECI", "TRAVIS"];
|
|
7625
7854
|
function isDisabled() {
|
|
7626
7855
|
return process.env.DO_NOT_TRACK === "1" || process.env.LLMSTXT_TELEMETRY_DISABLED === "1";
|
|
@@ -7647,7 +7876,7 @@ function track(params) {
|
|
|
7647
7876
|
async function init(options) {
|
|
7648
7877
|
const projectDir = process.cwd();
|
|
7649
7878
|
const isInteractive = process.stdin.isTTY && !options.yes;
|
|
7650
|
-
printBanner("0.
|
|
7879
|
+
printBanner("0.2.0");
|
|
7651
7880
|
p3.intro("Install llms.txt documentation for your project");
|
|
7652
7881
|
const spin = spinner2("Loading registry...");
|
|
7653
7882
|
spin.start();
|
|
@@ -8149,8 +8378,8 @@ async function update(name, options) {
|
|
|
8149
8378
|
|
|
8150
8379
|
// src/index.ts
|
|
8151
8380
|
var program = new Command();
|
|
8152
|
-
program.name("llmstxt").description("Install llms.txt files from the llms-txt-hub registry into your AI coding tools").version("0.
|
|
8153
|
-
printBanner("0.
|
|
8381
|
+
program.name("llmstxt").description("Install llms.txt files from the llms-txt-hub registry into your AI coding tools").version("0.2.0").action(() => {
|
|
8382
|
+
printBanner("0.2.0");
|
|
8154
8383
|
program.outputHelp();
|
|
8155
8384
|
});
|
|
8156
8385
|
program.command("init").description("Auto-detect dependencies and install matching llms.txt files").option("--category <categories>", "Filter by categories (comma-separated)").option("--all-categories", "Include all categories").option("--dry-run", "Preview without installing").option("--full", "Prefer llms-full.txt when available").option("-y, --yes", "Skip confirmation prompts").action(init);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "llmstxt-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Install llms.txt files from the llms-txt-hub registry into your project",
|
|
6
6
|
"keywords": [
|
|
@@ -23,14 +23,6 @@
|
|
|
23
23
|
"files": [
|
|
24
24
|
"dist"
|
|
25
25
|
],
|
|
26
|
-
"scripts": {
|
|
27
|
-
"build": "pnpm build:registry && tsup",
|
|
28
|
-
"build:registry": "tsx scripts/build-registry.ts",
|
|
29
|
-
"dev": "tsup --watch",
|
|
30
|
-
"test": "vitest run --passWithNoTests",
|
|
31
|
-
"test:watch": "vitest",
|
|
32
|
-
"typecheck": "tsc --noEmit"
|
|
33
|
-
},
|
|
34
26
|
"dependencies": {
|
|
35
27
|
"@clack/prompts": "^1.0.1",
|
|
36
28
|
"commander": "^13.1.0",
|
|
@@ -50,5 +42,13 @@
|
|
|
50
42
|
},
|
|
51
43
|
"publishConfig": {
|
|
52
44
|
"access": "public"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "pnpm build:registry && tsup",
|
|
48
|
+
"build:registry": "tsx scripts/build-registry.ts",
|
|
49
|
+
"dev": "tsup --watch",
|
|
50
|
+
"test": "vitest run --passWithNoTests",
|
|
51
|
+
"test:watch": "vitest",
|
|
52
|
+
"typecheck": "tsc --noEmit"
|
|
53
53
|
}
|
|
54
|
-
}
|
|
54
|
+
}
|