-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.25 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
{
"name": "@rocketleaguemapmaking/theme-rlmm",
"version": "0.9.0",
"type": "module",
"description": "Theme for rocketleaguemapmaking.com",
"homepage": "https://theme-rlmm.pages.dev/",
"author": {
"name": "RocketLeagueMapmaking",
"url": "https://github.com/RocketLeagueMapmaking/"
},
"bugs": {
"url": "https://github.com/rocketleaguemapmaking/theme-rlmm/issues"
},
"repository": "https://github.com/rocketleaguemapmaking/theme-rlmm.git",
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "npm run docs:api && vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:api": "npx vue-docgen -c ./docs/.vitepress/config/docgen.js"
},
"main": "lib/index.ts",
"exports": {
".": "./lib/index.ts",
"./config": "./lib/config.ts",
"./package.json": "./package.json",
"./frontmatter.json": "./frontmatter.json"
},
"devDependencies": {
"@types/node": "^20.12.12",
"typescript": "^5.9.3",
"vue": "^3.5.30",
"vue-docgen-cli": "^4.79.0"
},
"dependencies": {
"@iconify/vue": "^5.0.0",
"@vueuse/core": "^14.2.1",
"marked": "^17.0.4",
"vitepress": "1.6.4"
}
}