forked from roblox-ts/roblox-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.54 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "roblox-ts",
"version": "2.3.0",
"description": "A TypeScript-to-Luau Compiler for Roblox",
"main": "out/CLI/index.js",
"repository": {
"type": "git",
"url": "https://github.com/roblox-ts/roblox-ts.git"
},
"bin": {
"rbxtsc": "out/CLI/cli.js"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tspc -b",
"build-watch": "tspc -b -w",
"eslint": "eslint \"src/**/*.ts\" --max-warnings 0",
"devlink": "npm run build && cd devlink && npm link",
"update-test-types": "cd tests && npm install github:roblox-ts/compiler-types @rbxts/types@latest && npm install",
"test": "npm run build && npm run test-compile && npm run test-rojo && npm run test-run",
"test-compile": "nyc mocha --timeout 0 --recursive out/CLI/test.js",
"test-rojo": "rojo build tests -o ./tests/test.rbxl",
"test-run": "lune run ./tests/runTestsWithLune.lua ./tests/test.rbxl",
"test-roblox": "npm run build && npm run test-compile && npm run test-rojo && npm run run-in-roblox",
"run-in-roblox": "run-in-roblox --place ./tests/test.rbxl --script ./tests/out/main.server.lua"
},
"nyc": {
"all": true,
"reporter": [
"lcov"
],
"extension": [
".ts"
],
"include": [
"out/**/*.js",
"src/**/*.ts"
],
"exclude": [
"src/CLI",
"src/Project",
"src/Shared/classes/LogService.ts",
"src/TSTransformer/util/getFlags.ts",
"src/TSTransformer/util/getKindName.ts",
"src/TSTransformer/util/jsx/constants.ts"
]
},
"author": "",
"license": "MIT",
"dependencies": {
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@types/prompts": "^2.4.9",
"@types/resolve": "^1.20.6",
"@types/ts-expose-internals": "npm:ts-expose-internals@=5.3.3",
"@types/yargs": "^17.0.32",
"@roblox-ts/luau-ast": "^1.0.11",
"@roblox-ts/path-translator": "^1.0.0",
"@roblox-ts/rojo-resolver": "^1.0.6",
"chokidar": "^3.6.0",
"fs-extra": "^11.2.0",
"kleur": "^4.1.5",
"resolve": "^1.22.6",
"typescript": "=5.4.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-no-autofix": "^1.2.3",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"ts-patch": "^3.1.2",
"typescript-transform-paths": "^3.4.7"
},
"files": [
"out",
"include",
"CHANGELOG.md",
"!**/*.js.map",
"!**/*.tsbuildinfo"
]
}