-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.03 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
{
"name": "@semanticintent/recall-compiler",
"version": "1.1.0",
"description": "RECALL — what COBOL would have built for the web. A COBOL-inspired publishing language. Declare intent. Compile to HTML. The source is the artifact.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"recall": "./bin/recall.js"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"dev": "tsc --watch"
},
"keywords": [
"cobol",
"recall",
"transpiler",
"html",
"language",
"web"
],
"author": "semanticintent",
"license": "MIT",
"devDependencies": {
"@types/node": "^25.5.2",
"commander": "^14.0.3",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"dependencies": {
"commander": "^14.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/semanticintent/recall-compiler.git"
},
"homepage": "https://recall.cormorantforaging.dev",
"bugs": {
"url": "https://github.com/semanticintent/recall-compiler/issues"
}
}