-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "rovalra",
"version": "2.5.6",
"description": "An extension aiming to provide features that other Roblox extensions pay wall!",
"private": true,
"scripts": {
"build": "npm run clean && node build.js",
"clean": "rimraf dist",
"lint": "eslint ."
},
"devDependencies": {
"@types/chrome": "^0.1.42",
"chrome-types": "^0.1.429",
"esbuild": "^0.28.0",
"eslint": "10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"prettier-eslint": "^16.4.2",
"rimraf": "^6.1.3",
"sass": "^1.100.0"
},
"dependencies": {
"dompurify": "^3.4.8",
"i18next": "26.3.1",
"marked": "^18.0.5",
"roavatar-renderer": "^1.5.5",
"roblox-bat": "0.6.5"
},
"overrides": {
"brace-expansion": "^2.0.1",
"flatted": "^3.3.2",
"lodash": "^4.17.21",
"minimatch": "^9.0.5",
"picomatch": "^4.0.2"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{js,json,css,md}": "prettier --write"
}
}