generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 3.04 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
{
"name": "tree-mapper",
"type": "module",
"version": "1.3.3",
"description": "A hierarchical note management system for your vault",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"bump": "node version-bump.mjs patch",
"bump:minor": "node version-bump.mjs minor",
"bump:major": "node version-bump.mjs major",
"bump:beta": "node version-bump.mjs beta",
"commit": "cz",
"cleanup-changelog": "node --loader ts-node/esm --no-warnings --experimental-specifier-resolution=node scripts/cleanup-changelog.ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && npm run cleanup-changelog",
"changelog:first": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && npm run cleanup-changelog",
"release": "npm run build && npm run bump && npm run changelog && git add CHANGELOG.md && git add . && git commit -m \"chore(release): $(node -p \"require('./package.json').version\")\" && git tag \"$(node -p \"require('./package.json').version\")\" && git push origin master --tags",
"release:minor": "npm run build && npm run bump:minor && npm run changelog && git add CHANGELOG.md && git add . && git commit -m \"chore(release): $(node -p \"require('./package.json').version\")\" && git tag \"$(node -p \"require('./package.json').version\")\" && git push origin master --tags",
"release:major": "npm run build && npm run bump:major && npm run changelog && git add CHANGELOG.md && git add . && git commit -m \"chore(release): $(node -p \"require('./package.json').version\")\" && git tag \"$(node -p \"require('./package.json').version\")\" && git push origin master --tags",
"release:beta": "npm run build && npm run bump:beta && npm run changelog && git add CHANGELOG.md beta-manifest.json && git add . && git commit -m \"chore(release): $(node -p \"require('./package.json').version\")\" && git tag \"$(node -p \"require('./package.json').version\")\" && git push origin master --tags",
"test": "jest",
"lint": "eslint .",
"lint:ls": "npm run lint | grep -E '^[^ ]+\\.js|^[^ ]+\\.ts' | awk '{print $1}' | sort | uniq",
"lint:open": "scripts/lint-open.sh",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"dendron",
"hierarchical",
"notes",
"knowledge-management"
],
"author": "Jean Sordes",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"builtin-modules": "^3.3.0",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.19.10",
"eslint": "^8.57.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"obsidian": "latest",
"rimraf": "^5.0.5",
"ts-jest": "^29.3.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.31.0"
}
}