-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.76 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
52
53
54
{
"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": ">=18.0.0",
"npm": ">=7.0.0"
},
"overrides": {
"react": "^18.3.1",
"@types/react": "^18.3.4",
"react-dom": "^18.3.1"
},
"dependencies": {
"@rocketleaguemapmaking/theme-rlmm": "github:rocketleaguemapmaking/theme-rlmm#v0.7.0",
"vite-plugin-decap-cms": "^0.4.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@ls-lint/ls-lint": "^2.3.0-beta.1",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.9.1",
"eslint-plugin-vue": "^9.27.0",
"fslint": "^1.1.0",
"markdownlint-cli2": "^0.13.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"wrangler": "^3.72.3"
}
}