generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
28 lines (28 loc) · 1003 Bytes
/
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
{
"name": "obsidian-vault-statistics-plugin",
"version": "0.1.3",
"description": "Status bar item with vault statistics such as number of notes, files, attachments, and links.",
"main": "main.js",
"scripts": {
"watch": "rollup --config rollup.config.js -w --watch.onStart \"npm run test\" --watch.onEnd \"npm run deploy\"",
"test": "npx jest",
"build": "rollup --config rollup.config.js",
"deploy": "mkdir -p \"${PLUGIN_DIR:=.sandbox/.obsidian/plugins/vault-statistics-plugin}\"; cp -v manifest.json main.js styles.css \"${PLUGIN_DIR}\""
},
"keywords": [],
"author": "Bryan Kyle",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/jest": "^27.4.0",
"@types/node": "^14.14.2",
"jest": "^27.4.5",
"obsidian": "latest",
"rollup": "^2.32.1",
"ts-jest": "^27.1.2",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
}
}