-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.64 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
{
"name": "@rlippmann/context-compiler",
"version": "0.8.2",
"description": "Store AI rules and corrections separately from chat history so they stay consistent across turns.",
"keywords": [
"llm",
"conversational-ai",
"conversation-state",
"state-management",
"state-machine",
"deterministic",
"ai-infrastructure",
"typescript"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/rlippmann/context-compiler-ts.git"
},
"homepage": "https://github.com/rlippmann/context-compiler-ts#readme",
"bugs": {
"url": "https://github.com/rlippmann/context-compiler-ts/issues"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/src",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"fixtures:sync": "bash scripts/fixtures-sync.sh",
"fixtures:check": "bash scripts/fixtures-check.sh",
"fixtures:structured:sync": "bash scripts/structured-fixtures-sync.sh",
"fixtures:structured:check": "bash scripts/structured-fixtures-check.sh",
"fixtures:sync:all": "npm run fixtures:sync && npm run fixtures:structured:sync",
"fixtures:check:all": "npm run fixtures:check && npm run fixtures:structured:check",
"prepack": "npm run build",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}