-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 KB
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": "@rbxts/package-name",
"version": "0.0.1",
"description": "",
"main": "out/init.lua",
"scripts": {
"build": "rbxtsc",
"watch": "rbxtsc -w",
"test:watch": "rbxtsc -w --type=game -p test -i test/include",
"serve": "rojo serve test/default.project.json",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"types": "out/index.d.ts",
"files": [
"out",
"!**/*.tsbuildinfo",
"!**/*.spec.lua"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^2.3.0-types.1",
"@rbxts/types": "^1.0.780",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-roblox-ts": "^0.0.36",
"prettier": "^3.2.4",
"roblox-ts": "^2.3.0-dev-d7847ea",
"typescript": "^5.4.5"
},
"dependencies": {
"@rbxts/testez": "^0.4.2-ts.0"
}
}