forked from ceifa/wasmoon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·63 lines (63 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·63 lines (63 loc) · 1.85 KB
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
{
"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",
"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": "10.0.1",
"@types/node": "25.9.0",
"@typescript-eslint/parser": "8.59.4",
"chai": "6.2.2",
"chai-as-promised": "8.0.2",
"eslint": "10.4.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-simple-import-sort": "13.0.0",
"fengari": "0.1.5",
"mocha": "11.7.5",
"prettier": "3.8.3",
"rolldown": "1.0.1",
"rollup-plugin-copy": "3.5.0",
"tslib": "2.8.1",
"typescript": "6.0.3",
"typescript-eslint": "8.59.4"
},
"dependencies": {
"@types/emscripten": "1.41.5"
}
}