forked from vuejs/theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.44 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": "@vue/theme",
"version": "1.0.1",
"description": "The design system for Vue.js.",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./config": "./src/vitepress/config/baseConfig.js",
"./highlight": "./src/vitepress/config/highlight.js"
},
"files": [
"src",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/theme.git"
},
"keywords": [
"vue",
"design-system"
],
"author": "Evan You",
"license": "MIT",
"homepage": "https://theme.vuejs.org",
"bugs": {
"url": "https://github.com/vuejs/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": {
"@docsearch/css": "^3.0.0-alpha.41",
"@docsearch/js": "^3.0.0-alpha.41",
"@vueuse/core": "^7.3.0",
"body-scroll-lock": "^3.1.5",
"normalize.css": "^8.0.1",
"shiki": "^0.9.15"
},
"devDependencies": {
"@types/body-scroll-lock": "^2.6.1",
"@types/estree": "^0.0.48",
"prettier": "^2.4.1",
"typescript": "~4.3.5",
"vitepress": "^0.20.9",
"vue": "^3.2.26"
}
}