-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "vuepress-plugin-code-switcher",
"version": "2.0.1",
"author": {
"name": "Christopher Mühl",
"email": "christopher@padarom.xyz",
"url": "https://padarom.xyz"
},
"repository": {
"type": "git",
"url": "https://github.com/padarom/vuepress-plugin-code-switcher"
},
"scripts": {
"build": "tsc -b tsconfig.build.json && cpx \"src/**/*.{d.ts,vue,scss}\" lib",
"build:demo": "npm run build --workspace @vuepress-plugin-code-switcher/demo",
"dev": "npm run dev --workspace @vuepress-plugin-code-switcher/demo"
},
"workspaces": ["./demo"],
"packageManager": "pnpm@7.11.0",
"type": "module",
"exports": {
".": "./lib/node/index.js",
"./client": "./lib/client/index.js",
"./package.json": "./package.json"
},
"main": "./lib/node/index.ts",
"types": "./lib/node/index.d.ts",
"files": [
"lib"
],
"license": "MIT",
"devDependencies": {
"cpx": "^1.5.0",
"sass": "^1.55.0",
"sass-loader": "^13.0.2",
"typescript": "^4.8.4"
},
"dependencies": {
"@vuepress/client": "^2.0.0-beta.51",
"@vuepress/core": "^2.0.0-beta.51",
"@vuepress/utils": "^2.0.0-beta.51",
"tiny-emitter": "^2.1.0",
"vue": "^3.2.40"
}
}