generated from NiREvil/vless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 689 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 689 Bytes
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
{
"name": "vless",
"version": "1.0.0",
"description": "Freedom To Dream",
"type": "module",
"scripts": {
"format:js": "prettier --write **/*.{js,json,md,yml,html,css}",
"lint:js": "eslint --fix **/*.js",
"format:py": "black .",
"lint:py": "ruff check --fix .",
"format": "npm run format:js && npm run format:py",
"lint": "npm run lint:js && npm run lint:py"
},
"devDependencies": {
"@eslint/config-array": "^0.19.2",
"@eslint/js": "^9.21.0",
"@eslint/object-schema": "^2.1.6",
"eslint": "^9.21.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.5.2"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
}