-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 2.4 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
{
"name": "template-plugin",
"version": "1.0.0",
"description": "Template plugin for Obsidian.",
"main": "dist/dev/main.js",
"repository": {
"directory": ".",
"type": "git",
"url": "git+https://github.com/iLiftALot/template-plugin.git"
},
"scripts": {
"test": "jest --config=test/jest.config.js",
"dev:log": "node esbuild.config.mjs logger && terser -o dist/dev/main.js dist/dev/main.js",
"dev": "node esbuild.config.mjs && terser -o dist/dev/main.js dist/dev/main.js",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production && terser -o dist/build/main.js dist/build/main.js",
"bump-version": "node version-bump.mjs",
"upload:patch": "npm version patch --no-git-tag-version && npm run bump-version && npm run build && git add . && VERSION=$(node -p \"require('./package.json').version\") && git commit -m \"Automated update for version $VERSION\" && git tag -a $VERSION -m \"Version $VERSION\" && git push origin --follow-tags",
"upload:minor": "npm version minor --no-git-tag-version && npm run bump-version && npm run build && git add . && VERSION=$(node -p \"require('./package.json').version\") && git commit -m \"Automated update for version $VERSION\" && git tag -a $VERSION -m \"Version $VERSION\" && git push origin --follow-tags",
"upload:major": "npm version major --no-git-tag-version && npm run bump-version && npm run build && git add . && VERSION=$(node -p \"require('./package.json').version\") && git commit -m \"Automated update for version $VERSION\" && git tag -a $VERSION -m \"Version $VERSION\" && git push origin --follow-tags"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"@vitest/ui": "^2.1.5",
"builtin-modules": "4.0.0",
"jest": "^29.7.0",
"esbuild": "0.24.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"obsidian": "latest",
"obsidian-dev-utils": "latest",
"obsidian-typings": "latest",
"dotenv": "^16.4.5",
"tslib": "2.4.0",
"typescript": "5.6.3",
"terser": "5.36.0"
},
"dependencies": {
"deepmerge-ts": "7.1.3"
}
}