-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.37 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
{
"name": "insta-toc",
"version": "6.3.1",
"description": "Simultaneously generate, update, and maintain a table of contents for your notes in real time.",
"repository": {
"directory": ".",
"type": "git",
"url": "git+https://github.com/iLiftALot/insta-toc.git"
},
"homepage": "https://github.com/iLiftALot/insta-toc#readme",
"main": "dist/build/main.js",
"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 . && git commit -m \"Automated update for version $npm_package_version\" && git push origin master",
"upload:minor": "npm version minor --no-git-tag-version && npm run bump-version && npm run build && git add . && git commit -m \"Automated update for version $npm_package_version\" && git push origin master",
"upload:major": "npm version major --no-git-tag-version && npm run bump-version && npm run build && git add . && git commit -m \"Automated update for version $npm_package_version\" && git push origin master"
},
"keywords": [
"obsidian",
"obsidian plugin",
"obsidian-plugin",
"toc",
"table of contents"
],
"author": "Nick C.",
"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",
"esbuild": "0.24.0",
"jest": "^29.7.0",
"obsidian": "latest",
"obsidian-dev-utils": "latest",
"obsidian-typings": "latest",
"terser": "5.36.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tslib": "2.4.0",
"typescript": "5.6.3",
"vitest": "^2.1.5"
},
"dependencies": {
"mergician": "^2.0.2",
"turndown": "^7.2.0"
}
}