generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "obsidian-readwise",
"version": "0.0.9",
"description": "Sync Readwise highlights into your notes",
"repository": {
"type": "git",
"url": "https://github.com/renehernandez/obsidian-readwise"
},
"main": "src/index.js",
"scripts": {
"build": "svelte-check && rollup --config rollup.config.js",
"test": "mocha -r ts-node/register tests/*.ts",
"format": "prettier --write src/**/*",
"lint": "prettier --check src/**/*"
},
"keywords": [
"obsidian",
"readwise",
"plugin"
],
"author": "Rene Hernandez",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@tsconfig/svelte": "^1.0.10",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.2",
"@types/nunjucks": "^3.1.4",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"moment": "^2.29.1",
"obsidian": "^0.11.13",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.2.0",
"rollup": "^2.32.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-svelte": "^7.1.0",
"standard-version": "^9.1.0",
"svelte": "^3.32.2",
"svelte-check": "^1.1.33",
"svelte-preprocess": "^4.6.6",
"ts-node": "^9.1.1",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
},
"dependencies": {
"nunjucks": "^3.2.3"
}
}