forked from readwiseio/obsidian-readwise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 998 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 998 Bytes
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
{
"name": "readwise-official",
"version": "2.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/node": "^14.14.2",
"dotenv": "^10.0.0",
"rollup-plugin-dotenv": "^0.3.0",
"obsidian": "https://github.com/obsidianmd/obsidian-api/tarball/master",
"rollup": "^2.32.1",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
}
}