-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·71 lines (71 loc) · 2.29 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "wasmoon-lua5.1",
"version": "1.18.10",
"description": "A real lua 5.1 VM with JS bindings made with webassembly",
"main": "dist/index.js",
"scripts": {
"build:wasm:dev": "./build.sh dev",
"build:wasm": "./build.sh",
"build:wasm:docker:dev": "docker run --rm -v $(pwd):/wasmoon emscripten/emsdk /wasmoon/build.sh dev",
"build:wasm:docker": "docker run --rm -v $(pwd):/wasmoon emscripten/emsdk /wasmoon/build.sh",
"start": "rollup -c -w",
"test": "mocha --parallel --require ./test/boot.js test/*.test.js",
"luatests": "node --experimental-import-meta-resolve test/luatests.mjs",
"build": "rollup -c",
"clean": "rm -rf dist build",
"lint": "prettier --write . && eslint . --fix --cache",
"lint:nofix": "eslint ."
},
"files": [
"bin/*",
"dist/*"
],
"bin": {
"wasmoon": "bin/wasmoon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/X3ZvaWQ/wasmoon-lua5.1.git"
},
"author": "x3zvawq",
"license": "MIT",
"bugs": {
"url": "https://github.com/X3ZvaWQ/wasmoon-lua5.1/issues"
},
"homepage": "https://github.com/X3ZvaWQ/wasmoon-lua5.1#readme",
"keywords": [
"lua",
"lua5.1",
"lua-bindings",
"wasm",
"webassembly"
],
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/lodash": "^4.14.202",
"@types/node": "20.10.4",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"chai": "4.3.10",
"chai-as-promised": "7.1.1",
"eslint": "8.55.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-sort-imports-es6-autofix": "0.6.0",
"fengari": "0.1.4",
"jest-mock": "29.7.0",
"mocha": "10.2.0",
"prettier": "3.1.0",
"rollup": "4.10.0",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"tslib": "2.6.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/emscripten": "^1.39.10",
"lodash": "^4.17.21"
}
}