-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "sync-in-roblox",
"version": "1.0.0",
"description": "Tool to sync an RBXLX file into a Team Create game, overwriting everything.",
"main": "index.js",
"scripts": {
"compile": "tsc && copyfiles -u 1 src/**/*.lua target/",
"test": "npm run compile && cd target/ && node index.js -i 7210556568",
"build": "npm run compile && pkg target/index.js"
},
"pkg": {
"scripts": "target/**/*.js",
"assets": [
"node_modules/**/*",
"src/**/*.lua"
],
"targets": "node12-win-x64",
"outputPath": "dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/6ixfalls/sync-in-roblox.git"
},
"author": "6ixfalls",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/6ixfalls/sync-in-roblox/issues"
},
"homepage": "https://github.com/6ixfalls/sync-in-roblox#readme",
"devDependencies": {
"@types/death": "^1.1.2",
"@types/node": "^17.0.10",
"@types/uuid": "^8.3.4",
"@types/yargs": "^17.0.4",
"copyfiles": "^2.4.1"
},
"dependencies": {
"death": "^1.1.0",
"regedit": "github:6ixfalls/node-regedit",
"uuid": "^8.3.2",
"yargs": "^17.2.1"
}
}