generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "readwise-official",
"version": "3.0.1",
"description": "Automatically syncs your Readwise highlights with Obsidian.",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js --environment READWISE_SERVER_URL:https://readwise.io",
"dist": "npm run build && mkdir -p dist && cp styles.css main.js manifest.json dist"
},
"keywords": [
"obsidian",
"readwise"
],
"author": "Readwise",
"license": "MIT",
"dependencies": {
"@zip.js/zip.js": "^2.2.33",
"open": "^7.3.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/crypto-js": "^4.2.2",
"@types/node": "^14.14.2",
"dotenv": "^10.0.0",
"obsidian": "https://github.com/obsidianmd/obsidian-api/tarball/master",
"rollup": "^2.32.1",
"rollup-plugin-dotenv": "^0.3.0",
"ts-md5": "^1.3.1",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
}
}