-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"name": "@rbxts/rostruct",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"prepublishOnly": "rbxtsc",
"build:luau": "cross-env NODE_ENV=production TYPE=Luau rbxtsc --verbose --type=package",
"build:prod": "chmod +x \"./bin/bundle-prod.sh\" && bash ./bin/bundle-prod.sh",
"build:test": "npm run build:luau && chmod +x \"./bin/bundle-test.sh\" && bash ./bin/bundle-test.sh",
"build:test:min": "chmod +x \"./bin/bundle-test-min.sh\" && bash ./bin/bundle-test-min.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"files": [
"out"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^1.1.1-types.3",
"@rbxts/types": "^1.0.489",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-roblox-ts": "0.0.27",
"luamin": "^1.0.4",
"prettier": "^2.3.0",
"roblox-ts": "^1.2.6",
"typescript": "^4.3.2"
}
}