-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.33 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": "postfix-haskell",
"version": "0.1.5",
"description": "A very low-level functional programming language that compiles to WebAssembly",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "node build.js",
"dev": "tsc --watch",
"ppc": "NO_TSC=1 node build.js",
"start": "node --experimental-specifier-resolution=node ./dist/index.js",
"lint": "eslint . --ext .ts",
"docs": "typedoc --entryPointStrategy expand index.ts lib/* tools/*.ts --out docs && cp -r planning/implementation docs/markdown_docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dvtate/postfix-haskell.git"
},
"keywords": [
"language",
"compiler",
"webassembly",
"embeddable"
],
"bin": {
"phc": "dist/index.js"
},
"author": "dvtate",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/dvtate/postfix-haskell/issues"
},
"homepage": "https://github.com/dvtate/postfix-haskell#readme",
"dependencies": {
"binaryen": "^125.0.0",
"wabt": "^1.0.39",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/yargs": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"eslint": "^9.39.1",
"typedoc": "^0.28.15",
"typescript": "^5.9.3"
}
}