-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 2.08 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
{
"name": "wasmoon",
"version": "1.16.0",
"description": "A real lua VM with JS bindings made with webassembly",
"main": "./dist/index.js",
"type": "module",
"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": "rolldown -w -c",
"test": "mocha --parallel --require ./test/boot.js test/*.test.js",
"luatests": "node --experimental-import-meta-resolve test/luatests.js",
"build": "rolldown -c && tsc -d --emitDeclarationOnly --rootDir src --declarationDir dist",
"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/ceifa/wasmoon.git"
},
"author": "ceifa",
"license": "MIT",
"bugs": {
"url": "https://github.com/ceifa/wasmoon/issues"
},
"homepage": "https://github.com/ceifa/wasmoon#readme",
"keywords": [
"lua",
"moon",
"wasm",
"webassembly"
],
"devDependencies": {
"@eslint/js": "9.17.0",
"@types/node": "22.10.2",
"@typescript-eslint/parser": "8.18.2",
"chai": "5.1.2",
"chai-as-promised": "8.0.1",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"fengari": "0.1.4",
"mocha": "11.0.1",
"prettier": "3.4.2",
"rolldown": "1.0.0-beta.1-commit.7c52c94",
"rollup-plugin-copy": "3.5.0",
"tslib": "2.8.1",
"typescript": "5.7.2",
"typescript-eslint": "8.18.2"
},
"dependencies": {
"@types/emscripten": "1.39.10"
}
}