-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 KB
/
package.json
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
{
"name": "twelf-wasm",
"type": "module",
"exports": {
"require": "./lib/encoding.cjs",
"import": "./lib/encoding.js"
},
"types": "lib/encoding.d.ts",
"version": "0.1.8",
"description": "Running Twelf as a webassembly binary in a web page",
"homepage": "https://jcreedcmu.github.io/twelf-wasm/",
"bugs": {
"url": "https://github.com/jcreedcmu/twelf-wasm/issues"
},
"repository": "git://github.com/jcreedcmu/twelf-wasm.git",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"twelf",
"logic programming",
"wasm"
],
"author": "jcreed",
"license": "CC-BY-4.0",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"build-lib": "tsc --project tsconfig.lib.json && node build-lib.js"
},
"devDependencies": {
"@codemirror/language": "^6.10.1",
"@lezer/highlight": "^1.2.0",
"@types/jest": "^29.5.12",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^5.3.3",
"esbuild": "^0.20.1",
"@types/codemirror": "^5.60.15",
"codemirror": "^6.0.1"
},
"dependencies": {},
"files": [
"package.json",
"README.md",
"lib/encoding.js",
"lib/encoding.cjs",
"lib/encoding.cjs.map",
"lib/encoding.d.ts"
]
}