-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.3 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
{
"name": "vuepress-plugin-bg",
"version": "2.0.0-rc.2",
"description": "Background Plugin for vuepress theme",
"main": "lib/node/index.js",
"types": "lib/node/index.d.ts",
"type": "module",
"files": [
"lib"
],
"directories": {
"lib": "lib"
},
"scripts": {
"build": "pnpm build:tsc & pnpm run copy",
"build:tsc": "tsc -b tsconfig.build.json",
"clean": "rimraf lib *.tsbuildinfo -g",
"copy": "cpx \"src/**/*.{d.ts,vue,scss}\" lib"
},
"keywords": [
"vuepress-plugin",
"vuepress",
"plugin",
"bg"
],
"dependencies": {
"@tsparticles/engine": "^3.0.2",
"@tsparticles/interaction-light": "^3.0.2",
"@tsparticles/path-polygon": "^3.0.2",
"@vuepress/client": "2.0.0-rc.0",
"@vuepress/core": "2.0.0-rc.0",
"@vuepress/utils": "2.0.0-rc.0",
"tsparticles": "^3.0.2",
"vue": "^3.3.4"
},
"author": {
"name": "santino",
"email": "[email protected]",
"url": "https://www.wstee.com"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"cpx": "^1.5.0",
"rimraf": "^5.0.5"
},
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/wstee/vuepress-plugin-bg.git"
},
"bugs": {
"url": "https://github.com/wstee/vuepress-plugin-bg/issues"
}
}