generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "obsidian-text-progress-bar",
"version": "0.2.0",
"description": "Display low-fi text progress bars for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js",
"lint": "eslint . --ext .ts",
"test": "jest",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "Michael Adams",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.4.0",
"@types/jest": "^29.2.6",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"obsidian": "latest",
"rollup": "^2.79.0",
"rollup-plugin-scss": "^3.0.0",
"sass": "^1.54.8",
"ts-jest": "^29.0.5",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {}
}