-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "@xiangnanscu/lua2js",
"version": "0.33.0",
"main": "src/lua2js.mjs",
"type": "module",
"bin": {
"lua2js": "bin/lua2js.js"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"prerc": "npm --no-git-tag-version version minor",
"rc": "npm run push",
"commit": "git add . && git commit -am ",
"c": "npm run commit",
"push": "npm run commit",
"_push": "git push origin",
"_pull": "git pull origin",
"postpush": "uname -s | grep -q Darwin && npm run _push || while true; do timeout 10 npm run _push && break; done",
"pull": "uname -s | grep -q Darwin && npm run _pull || while true; do timeout 10 npm run _pull && break; done"
},
"dependencies": {
"luaparse": "^0.3.1",
"prettier": "^2.8.8",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@vitejs/plugin-vue": "^2.3.3",
"eslint": "^8.47.0",
"eslint-plugin-vue": "^9.17.0",
"vite": "^2.9.9",
"@highlightjs/vue-plugin": "^2.1.0",
"bootstrap": "^5.1.3",
"file-saver": "^2.0.5",
"highlight.js": "^11.5.1",
"sass": "^1.52.1",
"vue": "^3.2.25",
"vue-eslint-parser": "^9.3.1"
}
}