-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.87 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.87 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "logicstamp-context",
"version": "0.7.2",
"description": "The context compiler for TypeScript. Compile your codebase into deterministic architectural contracts and dependency graphs for AI coding workflows.",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"bin": {
"stamp": "dist/cli/stamp.js"
},
"files": [
"dist",
"schema",
"README.md",
"LICENSE",
"LLM_CONTEXT.md"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"react",
"typescript",
"ai",
"llm",
"context",
"documentation",
"logicstamp",
"claude",
"chatgpt",
"codebase-analysis",
"ast",
"static-analysis",
"mcp",
"ai-context",
"code-context"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LogicStamp/logicstamp-context.git"
},
"bugs": {
"url": "https://github.com/LogicStamp/logicstamp-context/issues"
},
"homepage": "https://github.com/LogicStamp/logicstamp-context#readme",
"author": "Amit Levi <logicstamp.dev@gmail.com> (https://amitlevi.dev)",
"contributors": [
"LogicStamp Contributors"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@toon-format/toon": "^1.0.0",
"ajv": "^8.18.0",
"chokidar": "^4.0.3",
"css-tree": "^3.1.0",
"glob": "^13.0.6",
"ts-morph": "^27.0.2"
},
"optionalDependencies": {
"@anthropic-ai/tokenizer": "^0.0.4",
"@dqbd/tiktoken": "^1.0.17"
},
"devDependencies": {
"@types/node": "^20.19.27",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"typescript": "^5.3.3",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=20"
}
}