forked from andrewromanenco/lua-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 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
{
"name": "lua-vm",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx tsc && npx tsc-alias",
"prepare": "npm run build",
"test": "jest",
"buildjs": "node build.js",
"lint": "eslint .",
"format:fix": "prettier --write .",
"format": "prettier --check ."
},
"keywords": [
"lua",
"virtual-machine",
"typescript",
"parser"
],
"author": "Andrew Romanenco <andrew@romanenco.com>",
"license": "MIT",
"description": "A lightweight Lua virtual machine written in TypeScript. Safely runs Lua code in the browser or Node.js with no access to the host environment.",
"repository": {
"type": "git",
"url": "https://github.com/andrewromanenco/lua-vm.git"
},
"bugs": {
"url": "https://github.com/andrewromanenco/lua-vm/issues"
},
"homepage": "https://github.com/andrewromanenco/lua-vm",
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/jest": "^29.5.14",
"esbuild": "^0.25.2",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"tsc-alias": "^1.8.15",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1"
},
"dependencies": {
"antlr4": "^4.13.2"
},
"files": [
"dist",
"README.md",
"LICENSE.txt"
]
}