-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 974 Bytes
/
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
{
"name": "v-privacy",
"version": "1.1.0",
"description": "A vue3 plugin that allows to manage the privacy of an HTML element by blurring its content and encrypt node text data in DOM",
"author": "Florian CHANCELADE <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/fchancel/v-privacy"
},
"scripts": {
"build": "rollup -c"
},
"keywords": [
"vue",
"privacy",
"directive",
"blur"
],
"bugs": {
"url": "https://github.com/fchancel/v-privacy/issues"
},
"homepage": "https://github.com/fchancel/v-privacy#readme",
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {
"crypto-js": "^4.1.1"
},
"devDependencies": {
"@rollup/plugin-terser": "0.4.1",
"rollup": "^2.0.0",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "5.0.4"
},
"files": [
"dist"
]
}