wg-lua/package.json

42 lines
1.1 KiB
JSON
Raw Normal View History

2024-03-27 11:08:52 +00:00
{
2024-03-27 12:19:16 +00:00
"name": "@rbxts/wg-lua",
"version": "1.0.0",
"description": "A lua implementation of the wireguard keygen algorithm.",
"main": "out/init.lua",
"scripts": {
2024-03-28 10:27:29 +00:00
"build": "rbxtsc --verbose",
"watch": "rbxtsc -w",
"lint": "eslint src",
"check_fmt": "prettier -c src/",
"check": "pnpm lint && pnpm check_fmt",
"fmt": "prettier -w src/",
2024-03-28 10:27:29 +00:00
"test": "./lunew test",
"postinstall": "patch -f node_modules/@rbxts/types/include/roblox.d.ts < lune_require_patch.diff",
2024-03-28 10:27:29 +00:00
"prepublishOnly": "pnpm build"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"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"
2024-03-27 17:43:48 +00:00
},
"packageManager": "pnpm@8.15.5"
2024-03-27 11:08:52 +00:00
}