generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
83 lines (83 loc) · 2.45 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "obsidian-kindle-plugin",
"version": "1.9.2",
"description": "Sync your Kindle book highlights using your Amazon login or uploading your My Clippings file",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/hadynz/obsidian-kindle-highlights.git"
},
"keywords": [],
"author": {
"name": "Hady Osman",
"email": "[email protected]",
"url": "https://hady.geek.nz"
},
"license": "MIT",
"scripts": {
"prettier": "prettier --write '**/*.{ts,js,css,html}'",
"lint": "tsc --noemit && svelte-check && eslint . --ext .ts",
"clean": "rimraf dist main.js*",
"test": "jest",
"test-verbose": "jest --verbose",
"test-watch": "jest --watch",
"dev": "NODE_ENV=development webpack && cp ./dist/main.js* .",
"build": "NODE_ENV=production webpack",
"prepare": "husky install"
},
"dependencies": {
"@hadynz/kindle-clippings": "^2.0.0",
"cheerio": "1.0.0-rc.6",
"fletcher": "0.0.3",
"gray-matter": "^4.0.3",
"lodash": "^4.17.21",
"nunjucks": "^3.2.3",
"nunjucks-date-filter": "^0.1.1",
"sanitize-filename": "^1.6.3",
"svelte-loading-spinners": "^0.1.4",
"typed-emitter": "^1.4.0"
},
"devDependencies": {
"@tsconfig/svelte": "^1.0.10",
"@types/faker": "^5.5.8",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.175",
"@types/nunjucks": "^3.1.4",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^10.0.0",
"dotenv": "^16.0.1",
"electron": "^12.0.4",
"eslint": "^7.24.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"faker": "^5.5.3",
"husky": "^7.0.4",
"jest": "^26.6.3",
"jest-text-transformer": "^1.0.4",
"lint-staged": "^11.2.4",
"moment": "^2.29.1",
"obsidian": "^0.12.0",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.2.0",
"rimraf": "^3.0.2",
"svelte": "^3.44.2",
"svelte-check": "^1.6.0",
"svelte-loader": "^3.1.2",
"svelte-preprocess": "^4.9.8",
"terser-webpack-plugin": "^5.2.5",
"ts-jest": "^26.5.4",
"ts-loader": "^8.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.2.3",
"uglify-js": "^3.14.3",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0",
"webpack-node-externals": "^2.5.2"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}