-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 967 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
{
"name": "piano",
"version": "1.0.0",
"author": "gert7",
"main": "out/init.lua",
"devDependencies": {
"@rbxts/compiler-types": "^2.2.0-types.0",
"@rbxts/types": "^1.0.661",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-roblox-ts": "^0.0.35",
"prettier": "^2.8.4",
"typedoc": "^0.23.25",
"typescript": "^4.9.5"
},
"types": "out/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"out",
"!**/*.tsbuildinfo"
],
"description": "Flutter for Roblox",
"keywords": [],
"license": "ISC",
"scripts": {
"build": "rbxtsc",
"watch": "rbxtsc -w --usePolling",
"docs": "typedoc",
"buildlib": "node ./raise_library.js"
},
"dependencies": {
"@rbxts/piano-npm": "file:piano-npm/rbxts-piano-npm-1.0.0.tgz"
}
}