-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
47 lines (47 loc) · 1.53 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
{
"name": "obsidian-local-images-plus",
"version": "0.16.2",
"description": "This is a plugin for Obsidian (https://obsidian.md) that downloads media files from external links and save in local vault.",
"main": "build/main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js --environment BUILD:production",
"version": "json -I -f manifest.json -e \"this.version='$npm_package_version'\" && json -I -f versions.json -e \"this['$npm_package_version']='$(cat manifest.json | json minAppVersion)'\" && git add ."
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/async-lock": "^1.3.0",
"@types/crypto-js": "4.1.1",
"@types/node": "^14.18.63",
"@types/safe-regex": "^1.1.2",
"json": "^11.0.0",
"obsidian": "^0.16.3",
"prettier": "^2.4.1",
"rollup": "^2.32.1",
"ts-node": "^10.0.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"dependencies": {
"async-lock": "^1.4.0",
"crypto-js": "^4.1.1",
"file-type": "^16.5.3",
"filenamify": "github:Sergei-Korneev/filenamify",
"findup-sync": "^5.0.0",
"install": "^0.13.0",
"is-svg": "^4.3.1",
"moment": "^2.30.1",
"npm": "^9.8.1",
"rollup-plugin-execute": "^1.1.1",
"safe-regex": "^2.1.1"
},
"optionalDependencies": {
"fsevents": "*"
}
}