-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@rbxts/luanoid",
"version": "1.3.5",
"description": "TypeScript support for Luanoid",
"main": "types/init.lua",
"typings": "types/index.d.ts",
"scripts": {
"eslint": "eslint \"types/**/*.ts\" --max-warnings 0",
"eslint-fix": "eslint \"types/**/*.ts\" --fix",
"build:examples": "@powershell -ExecutionPolicy Unrestricted ./scripts/build.ps1",
"test": "@powershell -ExecutionPolicy Unrestricted ./scripts/test.ps1"
},
"keywords": [
"roblox",
"typescript",
"luanoid"
],
"contributors": [
{
"name": "raphtalia",
"url": "https://github.com/raphtalia"
}
],
"author": "raphtalia",
"license": "MIT",
"devDependencies": {
"@rbxts/compiler-types": "^1.2.3-types.0",
"@rbxts/types": "^1.0.519",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-roblox-ts": "^0.0.8",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.3.1",
"typescript": "^4.3.4"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/raphtalia/Luanoid"
},
"homepage": "https://raphtalia.github.io/Luanoid",
"directories": {
"lib": "types"
},
"files": [
"types"
]
}