forked from aidenlx/alx-folder-note
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·116 lines (116 loc) · 3.5 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@aidenlx/folder-note",
"version": "0.12.3",
"description": "Add description, summary and more info to folders with folder notes.",
"main": "",
"scripts": {
"dev": "cross-env BUILD=dev node esbuild.js",
"check": "tsc --noEmit",
"build": "cross-env BUILD=production node esbuild.js",
"prettier": "prettier --write 'src/**/*.+(ts|tsx|json|html|css)'",
"eslint": "eslint . --ext .ts,.tsx --fix",
"release": "release-it"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@aidenlx/folder-note-core": "^1.3.1",
"@aidenlx/obsidian-icon-shortcodes": "^0.6.0",
"@aidenlx/relation-resolver": "^0.5.0",
"@release-it/bumper": "^3.0.1",
"@release-it/conventional-changelog": "^3.3.0",
"@tippyjs/react": "^4.2.6",
"@types/array.prototype.flat": "^1.2.1",
"@types/minimatch": "^3.0.5",
"@types/node": "^16.11.10",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"antd": "^4.17.2",
"array.prototype.flat": "^1.2.5",
"assert-never": "^1.2.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.14.0",
"esbuild-plugin-less": "^1.1.6",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^37.0.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"fast-deep-equal": "^3.1.3",
"immutable": "^4.0.0",
"json": "^11.0.0",
"minimatch": "^3.0.4",
"monkey-around": "^2.2.0",
"obsidian": "^0.12.17",
"path-browserify": "^1.0.1",
"prettier": "^2.5.0",
"pretty-bytes": "^5.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"regex-parser": "^2.2.11",
"release-it": "^14.11.8",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
},
"browser": {
"path": "path-browserify"
},
"release-it": {
"hooks": {
"before:init": [
"npm run prettier",
"npm run eslint"
],
"after:bump": [
"json -I -f manifest.json -e \"this.version='${version}'\"",
"json -I -f versions.json -e \"this['${version}']='$(cat manifest.json | json minAppVersion)'\"",
"sed -i '' \"s/available for Obsidian v.*$/available for Obsidian v$(cat manifest.json | json minAppVersion)+./\" README.md",
"git add .",
"npm run build"
],
"after:git:release": "echo After git push, before github release",
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
},
"npm": {
"publish": false
},
"git": {
"commitMessage": "chore: release v${version}",
"tagName": "${version}",
"tagAnnotation": "Release v${version}"
},
"github": {
"release": true,
"assets": [
"build/main.js",
"build/manifest.json",
"build/styles.css"
],
"proxy": "http://127.0.0.1:7890",
"releaseName": "${version}"
},
"plugins": {
"@release-it/bumper": {
"out": "manifest.json"
},
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}