-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.52 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
84
85
86
87
{
"name": "obsidian-writing",
"version": "0.0.0-development",
"description": "Write and format your next book directly from Obsidian",
"main": "main.js",
"files": [
"main.js",
"manifest.json"
],
"scripts": {
"predeploy": "npm run build",
"deploy": "CI=true npx semantic-release",
"watch": "rollup -c -w",
"build": "rollup -c"
},
"keywords": [
"obsidian",
"plugin",
"writing",
"book",
"publish",
"habits",
"goal"
],
"author": "johackim",
"license": "GPL-3.0",
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-image": "^3.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"obsidian": "latest",
"prettier": "^2.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.75.5",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^19.0.5",
"showdown": "^2.1.0"
},
"release": {
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
[
"@semantic-release/exec",
{
"prepareCmd": "sed -i -e '0,/${lastRelease.version}/s//${nextRelease.version}/' manifest.json"
}
],
[
"@semantic-release/git",
{
"assets": [
"manifest.json"
],
"message": "chore(release): ${nextRelease.version}"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "manifest.json"
},
{
"path": "main.js"
}
]
}
]
]
}
}