-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.79 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
{
"name": "@metta-ts/examples",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Runnable TypeScript examples for MeTTa TS. Run with: npx tsx examples/<file>.ts",
"scripts": {
"quickstart": "tsx quickstart.ts",
"grounded-ops": "tsx grounded-ops.ts",
"async": "tsx async.ts",
"edsl": "tsx edsl.ts",
"hyperon-api": "tsx hyperon-api.ts",
"matching": "tsx matching.ts",
"nondeterminism": "tsx nondeterminism.ts",
"stdlib": "tsx stdlib.ts",
"standard-libraries": "metta-ts standard-libraries.metta",
"types": "tsx types.ts",
"js-interop": "tsx js-interop.ts",
"python-interop": "tsx python-interop.ts",
"prolog-interop": "tsx prolog-interop.ts",
"browser-interop": "tsx browser-interop/smoke.ts",
"browser-interop:bundle-check": "node browser-interop/check-pure-bundle.mjs",
"json-module": "tsx json-module.ts",
"custom-matching": "tsx custom-matching.ts",
"concurrency": "tsx concurrency.ts",
"transactions": "tsx transactions.ts",
"scaling": "tsx scaling.ts",
"parallel-matcher": "tsx parallel-matcher.ts",
"grapher": "tsx grapher.ts",
"grapher-gif": "tsx grapher-gif.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@mettascript/browser": "workspace:*",
"@mettascript/core": "workspace:*",
"@mettascript/edsl": "workspace:*",
"@mettascript/grapher": "workspace:*",
"@mettascript/hyperon": "workspace:*",
"@mettascript/node": "workspace:*",
"@mettascript/prolog": "workspace:*",
"@mettascript/py": "workspace:*",
"pyodide": "314.0.2",
"pythonia": "^1.2.6",
"swipl-wasm": "8.0.3",
"ws": "^7.5.10"
},
"devDependencies": {
"esbuild": "0.27.7",
"gifenc": "1.0.3",
"sharp": "^0.35.3",
"tsx": "^4.19.2",
"typescript": "^5.0.0"
}
}