forked from smell-of-curry/rubedo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.01 KB
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
{
"name": "rubedo",
"version": "1.0.0",
"description": "A fast, lightweight, versatile MCBE addon linker for Script API development",
"main": "dist/index.js",
"bin": {
"rubedo": "./bin/rubedo"
},
"scripts": {
"build": "rimraf dist && tsc && npm run copy-templates",
"start": "node dist/index.js",
"dev": "npm run prepare && tsc --watch",
"copy-templates": "node dist/scripts/copy-templates.js",
"prepare": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@expo/sudo-prompt": "^9.3.2",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/node": "^22.14.1",
"@types/uuid": "^10.0.0",
"chokidar": "^4.0.3",
"commander": "^13.1.0",
"esbuild": "^0.25.2",
"fs-extra": "^11.3.0",
"glob": "^11.0.1",
"ignore": "^5.3.0",
"simple-git": "^3.27.0",
"typescript": "^5.8.3",
"uuid": "^11.1.0"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"rimraf": "^5.0.5"
}
}