mirror of
https://github.com/0x5eal/wg-lua.git
synced 2024-12-12 12:50:36 +00:00
40 lines
1 KiB
JSON
40 lines
1 KiB
JSON
{
|
|
"name": "@rbxts/wg-lua",
|
|
"version": "1.0.0",
|
|
"description": "A lua implementation of the wireguard keygen algorithm.",
|
|
"main": "out/init.lua",
|
|
"scripts": {
|
|
"build": "rbxtsc",
|
|
"watch": "rbxtsc -w",
|
|
"lint": "eslint src",
|
|
"check_fmt": "prettier -c src/",
|
|
"check": "pnpm lint && pnpm check_fmt",
|
|
"fmt": "prettier -w src/",
|
|
"test": "lune run tests",
|
|
"postinstall": "patch -f node_modules/@rbxts/types/include/roblox.d.ts < lune_require_patch.diff",
|
|
"prepublishOnly": "pnpm run build"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"types": "out/index.d.ts",
|
|
"files": [
|
|
"out",
|
|
"!**/*.tsbuildinfo"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@rbxts/compiler-types": "2.3.0-types.0",
|
|
"@rbxts/types": "1.0.765",
|
|
"@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"
|
|
}
|
|
}
|