forked from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.19 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.19 KB
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-awesome-reader",
"version": "0.1.0",
"description": "Make Obsidian a proper Reader.",
"main": "main.js",
"scripts": {
"clean": "del-cli -f main.js styles.css data.json build",
"rename_css": "node -e \"require('fs').rename('main.css', 'styles.css', function(err) { if (err) console.log(err); console.log('File successfully renamed!') })\"",
"dev": "node esbuild.config.mjs",
"build": "npm run clean && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production && npm run rename_css",
"release": "npm run build && mkdir build && shx cp main.js styles.css manifest.json build",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"builtin-modules": "3.3.0",
"esbuild": "0.14.47",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"react-reader": "^1.0.2",
"del-cli": "^4.0.1",
"shx": "^0.3.4"
}
}