forked from dmmulroy/just-prolog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 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
{
"name": "just-prolog",
"version": "0.1.0",
"description": "A TypeScript Prolog runtime for AI agents",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"bench": "vitest bench",
"bench:run": "vitest bench --run",
"tool:typecheck": "npm --prefix packages/just-prolog-tool run typecheck",
"tool:test:run": "npm --prefix packages/just-prolog-tool run test:run",
"tool:build": "npm --prefix packages/just-prolog-tool run build",
"validate:all": "npm run typecheck && npm run test:run && npm run build && npm run tool:typecheck && npm run tool:test:run && npm run tool:build"
},
"keywords": [
"prolog",
"logic-programming",
"agent",
"ai"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^24.5.2",
"fast-check": "^4.5.3",
"typescript": "^5.9.3",
"vitest": "^4.0.5",
"zod": "^4.3.6"
},
"dependencies": {
"@standard-schema/spec": "^1.1.0"
}
}