-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.84 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.84 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
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
91
92
93
94
{
"name": "eternal-empire",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"test": "npx jestrbx --place sandbox/local.rbxl",
"test:plugin": "node --test plugin/**/*.test.js",
"lint": "npx eslint src --no-error-on-unmatched-pattern",
"asset-sync": "npx rbxts-asset-sync --log-level=warn --output=src/shared/asset/AssetMap.ts",
"asset-watch": "npx rbxts-asset-sync --watch --output=src/shared/asset/AssetMap.ts",
"build:src": "rbxtsc",
"build:place": "npx rojo build --output=out/place.rbxl && node sandbox/pull.js && npx lune run sandbox/inject.luau",
"build": "npm run build:src && npm run build:place",
"open": "node sandbox/open.js",
"docs": "npx typedoc && node test/runProgressionEstimate.js",
"dev": "tsc-watch --compileCommand rbxtsc --onSuccess \"npm run build:place\" --onFirstSuccess \"npx rojo serve\"",
"dev:plugin": "concurrently --prefix none \"cd ./plugin && npx rojo build --plugin ee-tooling.rbxmx --watch\" \"nodemon --watch ./plugin/live ./plugin/live/index.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/evilbocchi/eternal-empire.git"
},
"bugs": {
"url": "https://github.com/evilbocchi/eternal-empire/issues"
},
"homepage": "https://github.com/evilbocchi/eternal-empire#readme",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@modelcontextprotocol/sdk": "^1.26.0",
"@rbxts/compiler-types": "^3.0.0-types.0",
"@rbxts/coverage": "^0.1.3",
"@rbxts/types": "^1.0.906",
"@types/node": "^25.2.1",
"axios": "^1.13.4",
"concurrently": "^9.2.1",
"dotenv": "^17.2.4",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-roblox-ts": "^1.3.1",
"express": "^5.2.1",
"jest-roblox-assassin": "^1.2.0",
"nodemon": "^3.1.11",
"prettier": "^3.8.1",
"rbx-lune": "^1.0.0",
"rbxluau": "^2.2.0",
"rbxts-asset-sync": "^0.5.0",
"rbxts-transform-env": "^3.0.0",
"rbxts-transformer-flamework": "^1.3.2",
"rbxts-transformer-services": "^1.1.1",
"roblox-ts": "^3.0.0",
"rojo": "^1.0.3-rojo7.7.0-rc.1",
"signale": "^1.4.0",
"tsc-watch": "^7.2.0",
"typedoc": "^0.28.16",
"typedoc-material-theme": "^1.4.1",
"typedoc-plugin-extras": "^4.0.1",
"typedoc-plugin-missing-exports": "^4.1.2",
"typedoc-plugin-rename-defaults": "^0.7.3",
"typescript": "^5.5.3",
"typescript-eslint": "^8.54.0",
"ws": "^8.19.0"
},
"dependencies": {
"@antivivi/lemon-signal": "^1.2.4",
"@antivivi/profileservice": "^1.5.2",
"@antivivi/rbxnamecolor": "^1.0.1",
"@antivivi/vrldk": "^1.2.0",
"@flamework/components": "^1.3.2",
"@flamework/core": "^1.3.2",
"@rbxts/camera-shaker": "^1.0.8",
"@rbxts/ejt": "^2.0.5",
"@rbxts/flamework-binary-serializer": "^0.7.0",
"@rbxts/fletchette": "^4.5.0",
"@rbxts/fuzzy-search": "^1.0.4",
"@rbxts/janitor": "^1.18.3-ts.0",
"@rbxts/jest": "^3.13.3-ts.1",
"@rbxts/jest-globals": "^3.13.3-ts.1",
"@rbxts/partcache": "^1.1.1",
"@rbxts/react": "^17.3.7-ts.1",
"@rbxts/react-devtools-core": "^17.3.7-ts.1",
"@rbxts/react-globals": "^17.3.7-ts.1",
"@rbxts/react-roblox": "^17.3.7-ts.1",
"@rbxts/roman-numerals": "^1.0.2",
"@rbxts/rparticle": "^1.0.0",
"@rbxts/serikanum": "^1.6.0",
"@rbxts/services": "^1.6.0",
"@rbxts/stringbuilder": "^1.1.0",
"@rbxts/ui-labs": "^2.4.2"
}
}