-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.68 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.68 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
{
"name": "kol-app",
"version": "1.2.0",
"description": "Release metadata + changelog automation for the Kol macOS app.",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"release": "cd tools && bun run build",
"changeset": "changeset",
"changeset:add": "changeset",
"changeset:add-ai": "bun run tools/scripts/add-changeset.ts",
"changeset:status": "changeset status --verbose",
"changeset:version": "changeset version",
"sync-changelog": "bun run tools/scripts/sync-changelog.ts",
"eval": "cd evals && npx promptfoo@latest eval",
"eval:code": "cd evals && npx promptfoo@latest eval --prompts prompts/english-code.txt --tests datasets/code-dictation.yaml --filter-pattern 'Keyword|Operator|Full type|Variable|Interface|Switch|No capitalize|TS:|Python:|PascalCase|camelCase|Keywords stay'",
"eval:screen": "cd evals && npx promptfoo@latest eval --prompts prompts/english-code-screen.txt --tests datasets/code-dictation.yaml --filter-pattern 'Screen context'",
"eval:names": "cd evals && npx promptfoo@latest eval --tests datasets/english.yaml --filter-pattern 'Screen context.*name|Screen context.*person|Screen context.*company|Screen context.*capitalize|Screen context.*spelling|Screen context.*mixed|Screen context.*hallucinate'",
"eval:vocab": "cd evals && npx promptfoo@latest eval --prompts prompts/english-messaging-vocab.txt --tests datasets/vocab-hints.yaml",
"eval:mentions": "cd evals && npx promptfoo@latest eval --prompts prompts/english-messaging-screen-mentions.txt --tests datasets/mentions.yaml",
"eval:view": "cd evals && npx promptfoo@latest view"
},
"devDependencies": {
"@changesets/cli": "^2.29.8"
}
}