-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.18 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
{
"name": "sourceror",
"version": "0.8.5",
"description": "Compiler toolchain from Source to WebAssembly",
"dependencies": {
"acorn": "^8.1",
"node-getopt": "^0.3"
},
"devDependencies": {
"@types/estree": "^0.0.51",
"@types/node": "^20.11",
"js-slang": "^0.5",
"prettier": "^2.0",
"typescript": "^5.4.3"
},
"peerDependencies": {
"js-slang": "^0.5"
},
"main": "dist/index",
"types": "dist/index",
"files": [
"dist",
"wasm"
],
"bin": {
"sourceror": "dist/cli.js"
},
"scripts": {
"ci": "yarn run format:ci",
"build:wasm": "wasm-pack build -d ../sourceror-driver/wasm ../source-compiler",
"build": "yarn run build:wasm && tsc && node postbuild.js",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:ci": "prettier --list-different \"src/**/*.{ts,tsx}\"",
"prepublishOnly": "yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/source-academy/sourceror.git"
},
"author": "Bernard Teo",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/source-academy/sourceror/issues"
},
"homepage": "https://github.com/source-academy/sourceror#readme"
}