-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 1002 Bytes
/
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
{
"name": "@roblox-ts/luau-ast",
"version": "2.0.0",
"description": "Luau AST + Renderer for roblox-ts",
"main": "out/LuauAST/index.js",
"repository": {
"type": "git",
"url": "https://github.com/roblox-ts/luau-ast.git"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tspc -b",
"build-watch": "tspc -b -w",
"eslint": "eslint \"src/**/*.ts\" --max-warnings 0"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-autofix": "^2.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.3",
"ts-patch": "^3.2.1",
"typescript": "5.2.2",
"typescript-transform-paths": "^3.5.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"out",
"CHANGELOG.md",
"!**/*.js.map",
"!**/*.tsbuildinfo"
]
}