-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.13 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
{
"name": "software-periodic-table",
"version": "0.1.0",
"description": "A finite ontology of 115 recurring software elements and a composition framework for LLM-based coding agents",
"type": "module",
"scripts": {
"build": "tsc",
"example": "tsx examples/task-board.ts",
"example:crm": "tsx examples/crm-contacts.ts",
"example:product": "tsx examples/product-catalog.ts",
"example:invoice": "tsx examples/invoice-dashboard.ts",
"eval": "tsx eval/runner.ts",
"eval:llm": "LLM_API_KEY=$OPENAI_API_KEY tsx eval/runner.ts",
"validate": "tsx scripts/validate-ontology.ts",
"check": "tsc --noEmit",
"format": "biome check --write",
"lint": "biome check"
},
"keywords": [
"software-ontology",
"compositional-code-generation",
"llm",
"coding-agents",
"periodic-table",
"reusability",
"software-engineering"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nulllabtests/software-periodic-table"
},
"devDependencies": {
"@biomejs/biome": "^2.5.4",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}