-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.1 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
{
"type": "module",
"name": "@playkostudios/wle-cleaner",
"version": "0.8.1",
"description": "Wonderland Engine project file cleanup utility",
"main": "dist/index.js",
"files": [
"dist"
],
"bin": {
"wle-cleaner": "dist/index.js"
},
"scripts": {
"build": "tsc",
"wle-cleaner": "node dist/index.js",
"wle-cleaner-inspect": "node --inspect --inspect-brk dist/index.js"
},
"keywords": [
"wonderland"
],
"contributors": [
{
"name": "Playko",
"url": "https://www.playko.com/"
},
{
"name": "rafern",
"email": "rafael@playko.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/playkostudios/wle-cleaner.git"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.1.4",
"typescript": "^5.7.2"
},
"dependencies": {
"@playkostudios/jsonc-ast": "^0.1.5",
"@wonderlandengine/api": ">=1.1.3 <1.3",
"commander": "^12.1.0",
"glob": "^11.0.0",
"isolated-vm": "^5.0.1"
},
"peerDependencies": {
"@wonderlandengine/api": ">=1.1.3 <1.3"
}
}