forked from Sleitnick/RbxObservers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
37
38
39
40
{
"name": "@rbxts/observers",
"version": "0.3.3",
"description": "Collection of observer utility functions",
"main": "out/init.lua",
"scripts": {
"build": "npx rbxtsc --rojo rbxts.project.json",
"watch": "npx rbxtsc --rojo rbxts.project.json -w",
"prepublishOnly": "npm run build",
"postpublish": "npm run wally:publish",
"wally:publish": "wally publish"
},
"keywords": [
"observers"
],
"author": "sleitnick",
"repository": "github:Sleitnick/RbxObservers",
"license": "MIT",
"types": "out/index.d.ts",
"files": [
"out",
"!**/*.tsbuildinfo"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^2.1.0-types.1",
"@rbxts/types": "^1.0.677",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-roblox-ts": "^0.0.35",
"prettier": "^2.8.8",
"roblox-ts": "^2.1.0",
"typescript": "^4.9.5"
}
}