-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.6 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
{
"name": "lua-js",
"version": "1.0.0",
"description": "A modular and fast Lua interpreter written in JavaScript",
"main": "./dist/src/index.js",
"scripts": {
"start": "npm run build && node dist/src/index.js",
"build": "tsc",
"lint": "eslint .",
"format": "prettier --write .",
"clean": "rm -rf dist",
"test": "npm run build && jest --coverage",
"bundle": "npm run build && rollup -c",
"prepublishOnly": "npm run build"
},
"author": "bytexenon",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bytexenon/lua-js.git"
},
"keywords": [
"lua",
"interpreter",
"javascript",
"typescript"
],
"bugs": {
"url": "https://github.com/bytexenon/lua-js/issues"
},
"homepage": "https://github.com/bytexenon/lua-js#readme",
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.14.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.14.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-unicorn": "^56.0.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^2.79.2",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist"
],
"type": "module"
}