-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.21 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
{
"name": "prompt-builder",
"version": "0.1.0",
"description": "Build one deterministic model prompt from an explicit prompt contract, supplied values, ordered sections, and declared construction policy.",
"type": "module",
"license": "UNLICENSED",
"private": true,
"main": "./src/index.ts",
"bin": {
"prompt-builder": "./bin/prompt-builder.ts"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test --test-reporter spec tests/acceptance/builds-model-prompt.steps.test.ts tests/conformance/enforces-builder-conformance.test.ts tests/demonstrations/replays-demonstrations.test.ts",
"test:acceptance": "node --import tsx --test --test-reporter spec tests/acceptance/builds-model-prompt.steps.test.ts",
"test:conformance": "node --import tsx --test --test-reporter spec tests/conformance/enforces-builder-conformance.test.ts",
"test:demonstrations": "node --import tsx --test --test-reporter spec tests/demonstrations/replays-demonstrations.test.ts",
"build-prompt": "node --import tsx ./bin/prompt-builder.ts build"
},
"devDependencies": {
"@types/node": "^20.19.0",
"tsx": "^4.23.1",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=20.11.0"
}
}