-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.13 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.13 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@tanaabased/theme",
"description": "A Tanaab subtheme built on vitepress-theme-default-plus.",
"version": "0.5.0",
"author": "Mike Pirog @pirog",
"license": "MIT",
"repository": "tanaabased/theme",
"bugs": "https://github.com/tanaabased/theme/issues/new/choose",
"homepage": "https://github.com/tanaabased/theme",
"main": "tanaab-theme.js",
"packageManager": "bun@1.2.15",
"bin": {
"sync-tanaab-assets": "./bin/sync-assets.js"
},
"exports": {
".": "./tanaab-theme.js",
"./core": "./tanaab-theme-core.js",
"./components/*": "./components/*.vue",
"./config": "./config.js",
"./styles/theme.scss": "./styles/theme.scss",
"./styles/theme": "./styles/theme.scss",
"./styles/vars.scss": "./styles/vars.scss",
"./styles/vars": "./styles/vars.scss",
"./package.json": "./package.json"
},
"keywords": [
"tanaab",
"vitepress",
"vitepress-theme"
],
"engines": {
"bun": ">=1.3.0"
},
"publishConfig": {
"access": "public"
},
"babel": {},
"type": "module",
"scripts": {
"build": "VPL_MVB_VERSION=$(git describe --tags --always --abbrev=1 --match=\"v[0-9].*\") bunx vitepress build .",
"dev": "VPL_BASE_URL=http://localhost:5173 VPL_MVB_VERSION=$(git describe --tags --always --abbrev=1 --match=\"v[0-9].*\") bunx vitepress dev .",
"lint:eslint": "eslint .",
"format:check": "prettier . --check --ignore-unknown",
"format:write": "prettier . --write --ignore-unknown",
"lint": "bun run lint:eslint && bun run format:check",
"mvb": "bunx mvb --runtime bun .",
"preview": "bunx vitepress preview .",
"test": "mocha \"test/**/*.spec.js\""
},
"dependencies": {
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.1",
"@lando/vitepress-theme-default-plus": "^1.1.5",
"colorette": "^2.0.20",
"shiki": "^2.5.0"
},
"devDependencies": {
"@eslint/js": "^8.57.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-vue": "^10.0.0",
"globals": "^15.15.0",
"mocha": "^11.7.5",
"prettier": "^3.5.3",
"vitepress": "^1.5.0",
"vue-eslint-parser": "^10.1.1"
}
}