-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "girafe",
"version": "1.1.0",
"description": "Term Rewriting Systems infrastructure",
"main": "./lib/js/lib.js",
"module": "./lib/js/lib.js",
"types": "./lib/types/lib.d.ts",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"esbuild": "^0.17.10",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"monaco-editor": "^0.36.1",
"typescript": "^4.9.5",
"vite": "^4.1.4"
},
"scripts": {
"build": "tsc --noEmit && esbuild cli/grf.ts --bundle --platform=node --minify --outfile=dist/grf.js && npm run insertShebang",
"buildNoCheck": "esbuild cli/grf.ts --bundle --platform=node --outfile=dist/grf.js && npm run insertShebang",
"insertShebang": "node insertShebang.js",
"lib": "tsc",
"check": "tsc --noEmit",
"test": "jest",
"build:playground": "vite build src/Playground --outDir=../../dist/playground --base=/Girafe/",
"start:playground": "vite dev src/Playground",
"prepublishOnly": "rm -rf /lib /dist && npm run build"
},
"keywords": [
"Girafe",
"TRS",
"MTRS",
"VM"
],
"bin": {
"grf": "./dist/grf.js"
},
"author": "Nathan Soufflet",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nathsou/Girafe"
},
"files": [
"/lib"
]
}