generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
42 lines (42 loc) · 992 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
42
{
"name": "privacy-glasses",
"version": "0.7.1",
"description": "Provides a button and command to obfuscate onscreen text for better privacy in public settings.",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js"
},
"keywords": [
"blur",
"blurred",
"privacy",
"private",
"public",
"display",
"theme",
"appearance",
"secure",
"security",
"edit",
"glasses",
"text",
"block",
"circles",
"obfuscate",
"obfuscated"
],
"author": "Jill Alberts",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/node": "^14.14.2",
"obsidian": "https://github.com/obsidianmd/obsidian-api/tarball/master",
"prettier": "^2.8.2",
"rollup": "^2.32.1",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
}
}