generated from xiangnanscu/lua2js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.97 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
{
"name": "@xiangnanscu/js2lua",
"version": "0.48.0",
"type": "module",
"description": "Writing LuaJIT with the expressiveness of JavaScript.",
"main": "src/js2lua.mjs",
"bin": {
"js2lua": "bin/js2lua.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xiangnanscu/js2lua.git"
},
"author": "Nan Xiang",
"license": "MIT",
"bugs": {
"url": "https://github.com/xiangnanscu/js2lua/issues"
},
"homepage": "https://github.xnscu.com/js2lua/",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"commit": "git add . && git commit -am ",
"push": "yarn commit",
"postpush": "while true; do git push && { echo 'Git push succeeded'; break; } || echo 'Git push failed, retrying in 1 seconds'; sleep 1; done",
"pull": "while true; do git pull && { echo 'Git pull succeeded'; break; } || echo 'Git pull failed, retrying in 1 seconds'; sleep 1; done",
"prerelease": "npm --no-git-tag-version version minor",
"docs": "node makeDocs.js",
"release": "npm run docs && push_option=release npm run push",
"rc": "yarn release",
"replace": "find . -type d \\( -name .git -o -name node_modules \\) -prune -o -type f -exec sed -i s/js2lua/field/g {} \\;",
"test": "node test.mjs"
},
"dependencies": {
"@babel/parser": "^7.22.14",
"lua-fmt": "^2.6.0",
"lua-format": "^1.5.2",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@highlightjs/vue-plugin": "^2.1.0",
"@prettier/plugin-lua": "^0.0.3",
"@rushstack/eslint-patch": "^1.3.3",
"@vitejs/plugin-vue": "^2.3.3",
"bootstrap": "^5.1.3",
"eslint": "^8.47.0",
"eslint-plugin-vue": "^9.17.0",
"file-saver": "^2.0.5",
"highlight.js": "^11.5.1",
"prettier": "^2.8.8",
"sass": "^1.52.1",
"source-map-support": "^0.5.21",
"vite": "^2.9.9",
"vite-plugin-require-transform": "^1.0.21",
"vue": "^3.2.25",
"vue-eslint-parser": "^9.3.1",
"yargs": "^17.7.2"
}
}