-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.72 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.72 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
{
"name": "rocket_league_map_making",
"version": "0.11.0",
"description": "A website containing information pertaining to the creation, extension, debugging, and concepts of Rocket League map making.",
"author": "RLMM",
"license": "MIT",
"type": "module",
"private": true,
"homepage": "https://rocketleaguemapmaking.com",
"repository": {
"type": "git",
"url": "https://github.com/rocketleaguemapmaking/RL-docs.git"
},
"bugs": {
"url": "https://github.com/rocketleaguemapmaking/RL-docs/issues"
},
"scripts": {
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint docs/.vitepress/",
"lint:fix": "npm run lint -- --fix",
"lint-files": "npm run lint-files:size && npm run lint-files:name",
"lint-files:size": "fslint --files=docs/.vitepress/public/**/*.png --limit-mb=1",
"lint-files:name": "ls-lint",
"lint-markdown": "npx markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#.github\"",
"lint-markdown:fix": "npx markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#.github\" --fix"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"overrides": {
"react": "^19.2.4",
"@types/react": "^19.2.14",
"react-dom": "^19.2.4"
},
"dependencies": {
"@rocketleaguemapmaking/theme-rlmm": "github:rocketleaguemapmaking/theme-rlmm#fef079e",
"vite-plugin-decap-cms": "^0.5.2"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@ls-lint/ls-lint": "^2.3.1",
"eslint": "^9.39.4",
"eslint-plugin-vue": "^9.33.0",
"fslint": "^1.1.0",
"markdownlint-cli2": "^0.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"wrangler": "^4.71.0"
}
}