-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.06 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@daktadeo/theme",
"version": "2.2.4",
"description": "A Theme forked from vuejs.org for the Multipass.rocks website & project docs.",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./config": {
"types": "./src/vitepress/config/baseConfig.d.ts",
"default": "./src/vitepress/config/baseConfig.js"
}
},
"files": [
"src",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/daktadeo/theme.git"
},
"keywords": [
"vue"
],
"author": "Veerle Deschepper, based on work by Evan You",
"license": "MIT",
"homepage": "https://multipass.rocks/",
"bugs": {
"url": "https://github.com/daktadeo/theme/issues"
},
"scripts": {
"lint": "prettier --check --write --parser typescript \"{__tests__,docs,src,types}/**/*.ts\"",
"lint:fail": "prettier --check --parser typescript \"{__tests__,docs,src,types}/**/*.ts\"",
"type": "tsc --noEmit",
"test": "npm run lint && npm run type",
"dev": "vitepress dev demo",
"demo-build": "vitepress build demo",
"serve": "npm run demo-build && vitepress serve demo"
},
"dependencies": {
"@daktadeo/theme": "^2.2.1",
"@docsearch/css": "^3.2.1",
"@docsearch/js": "^3.2.1",
"@vueuse/core": "^9.1.1",
"body-scroll-lock": "^3.1.5",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1"
},
"devDependencies": {
"@mdit-vue/types": "^0.11.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/body-scroll-lock": "^3.1.0",
"@types/estree": "^1.0.0",
"@types/node": "^18.15.3",
"postcss": "^8.4.21",
"prettier": "^2.7.1",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5",
"vitepress": "^1.0.0-alpha.60",
"vue": "^3.2.47"
},
"peerDependencies": {
"vitepress": "^1.0.0-alpha.60"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
}
}
}