-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.74 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"author": "clockblocker",
"dependencies": {
"@codemirror/view": "latest",
"@textfresser/lexical-generation": "workspace:*",
"@textfresser/vault-action-manager": "workspace:*",
"@types/mocha": "^10.0.10",
"@types/sbd": "latest",
"neverthrow": "^8.2.0",
"openai": "latest",
"sbd": "latest",
"ts-plugin-sort-import-suggestions": "^1.0.4",
"typescript-eslint": "latest",
"winston": "latest",
"zod": "latest",
"@textfresser/obsidian-event-layer": "workspace:*"
},
"description": "Go trough the german texts, building your own dictionary from your personal contexts",
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@types/bun": "latest",
"@types/codemirror": "latest",
"@types/node": "^18.19.130",
"@types/tern": "latest",
"@types/winston": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"builtin-modules": "^5.0.0",
"bun-types": "^1.3.4",
"esbuild": "^0.25.11",
"knip": "^5.82.1",
"obsidian": "^1.10.2",
"tslib": "^2.8.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"keywords": [],
"license": "MIT",
"main": "main.js",
"name": "cbcr-text-eater-de",
"scripts": {
"build": "bun run codegen:prompts && bun build ./src/main.ts --outfile=main.js --platform=node --format=cjs --external obsidian --external electron --external @codemirror/*",
"build:dev": "bun x tsc -noEmit -skipLibCheck && bun run esbuild.config.mjs development",
"clearTestLogs": "bun ./tests/tracing/scripts/clear-test-logs.ts",
"codegen:prompts": "bun run --filter @textfresser/lexical-generation codegen:prompts",
"coverage": "bun run clearTestLogs && bun test --coverage --preload ./tests/unit/setup.ts",
"dev": "bun run esbuild.config.mjs",
"fix": "bun x biome check --write --unsafe . 2>/dev/null || true",
"knip": "knip",
"lint": "bun x biome check .",
"prompt:stability": "bun run --filter @textfresser/lexical-generation prompt:stability",
"prompt:test": "bun run --filter @textfresser/lexical-generation prompt:test",
"runbook": "bash scripts/runbook-cli/textfresser-runbook",
"semantic-diff": "bun scripts/semantic-diff.ts",
"splitter:run": "bun tests/splitter-runner.ts",
"test": "bun run test:unit",
"test:cli-e2e": "bun run build && bun test --env-file=.env.cli-e2e tests/cli-e2e/ --timeout 25000",
"test:lexical-generation": "bun run clearTestLogs && bun run --filter @textfresser/lexical-generation test",
"test:unit": "bun run clearTestLogs && bun test --reporter=dot --preload ./tests/unit/setup.ts src/packages/*/tests/ tests/unit/ tests/specs/",
"typecheck:changed": "bash scripts/typecheck-changed.sh",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"type": "commonjs",
"version": "0.0.1",
"workspaces": [
"src/packages/*"
]
}