mirror of
https://github.com/0x5eal/wg-lua.git
synced 2024-12-12 12:50:36 +00:00
chore: finalize linter and formatter config
This commit is contained in:
parent
cb9d2e2e8a
commit
c9301f4eb4
2 changed files with 1073 additions and 29 deletions
18
package.json
18
package.json
|
@ -1,12 +1,14 @@
|
||||||
{
|
{
|
||||||
"name": "@rbxts/wg-translate-js",
|
"name": "wg-lua",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "",
|
"description": "A lua implementation of the wireguard keygen algorithm.",
|
||||||
"main": "out/init.lua",
|
"main": "out/init.lua",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "rbxtsc",
|
"build": "rbxtsc",
|
||||||
"watch": "rbxtsc -w",
|
"watch": "rbxtsc -w",
|
||||||
"postinstall": "patch node_modules/@rbxts/types/include/roblox.d.ts < lune_require_patch.diff",
|
"lint": "eslint src",
|
||||||
|
"fmt": "prettier .",
|
||||||
|
"postinstall": "patch -f node_modules/@rbxts/types/include/roblox.d.ts < lune_require_patch.diff",
|
||||||
"prepublishOnly": "pnpm run build"
|
"prepublishOnly": "pnpm run build"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
|
@ -22,8 +24,14 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@rbxts/compiler-types": "2.3.0-types.0",
|
"@rbxts/compiler-types": "2.3.0-types.0",
|
||||||
"@rbxts/types": "^1.0.765",
|
"@rbxts/types": "1.0.765",
|
||||||
"roblox-ts": "^2.3.0",
|
"@typescript-eslint/eslint-plugin": "^7.4.0",
|
||||||
|
"eslint": "^8.57.0",
|
||||||
|
"eslint-config-prettier": "^9.1.0",
|
||||||
|
"eslint-plugin-prettier": "^5.1.3",
|
||||||
|
"eslint-plugin-roblox-ts": "^0.0.36",
|
||||||
|
"prettier": "^3.2.5",
|
||||||
|
"roblox-ts": "2.3.0",
|
||||||
"typescript": "^5.4.3"
|
"typescript": "^5.4.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
1040
pnpm-lock.yaml
1040
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue