-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.36 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.36 KB
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
117
118
119
{
"name": "podnotes",
"version": "2.17.3",
"description": "Helps you write notes on podcasts.",
"license": "MIT",
"author": "Christian Bager Bach Houmann",
"repository": {
"type": "git",
"url": "https://github.com/chhoumann/PodNotes.git"
},
"main": "main.js",
"scripts": {
"dev": "vite build --watch --mode development",
"build": "npm run typecheck && vite build",
"typecheck": "tsc --project tsconfig.json --noEmit && tsc --project tsconfig.test.json --noEmit",
"lint": "oxlint --deny-warnings src tests/e2e scripts",
"format:check": "npm run format -- --check",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"semantic-release": "semantic-release",
"test": "npm run check:a11y && vitest",
"test:e2e": "npm run build && vitest run --config vitest.e2e.config.ts",
"obsidian:e2e": "node scripts/obsidian-e2e-cli.mjs",
"provision:e2e-vault": "node scripts/provision-obsidian-e2e-vault.mjs",
"start:e2e-obsidian": "node scripts/start-obsidian-e2e-instance.mjs",
"stop:e2e-obsidian": "node scripts/stop-obsidian-e2e-instance.mjs",
"check:a11y": "svelte-check --tsconfig ./tsconfig.json --fail-on-warnings && svelte-check --tsconfig ./tsconfig.test.json --fail-on-warnings",
"docs:build": "mkdocs build -f docs/mkdocs.yml -d site",
"docs:deploy": "npm run docs:build && wrangler pages deploy docs/site --project-name podnotes --branch master",
"format": "oxfmt src tests scripts .github package.json manifest.json versions.json tsconfig.base.json tsconfig.json tsconfig.test.json .oxlintrc.json .oxfmtrc.json svelte.config.mjs vite.config.ts vitest.config.ts vitest.e2e.config.ts vitest.setup.ts version-bump.mjs wrangler.jsonc orca.yaml docs/mkdocs.yml"
},
"dependencies": {
"fuse.js": "^7.4.2",
"openai": "^6.45.0"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.4.2",
"@types/node": "^22.20.0",
"eslint-plugin-obsidianmd": "^0.4.1",
"jsdom": "^29.1.1",
"obsidian": "1.13.1",
"obsidian-e2e": "0.6.0",
"oxfmt": "^0.57.0",
"oxlint": "^1.72.0",
"semantic-release": "^25.0.5",
"svelte": "^5.46.4",
"svelte-check": "^4.7.1",
"svelte-preprocess": "^6.0.5",
"typescript": "6.0.3",
"vite": "^8.1.3",
"vitest": "^4.1.10",
"wrangler": "4.107.0"
},
"overrides": {
"@actions/http-client": {
"undici": "^6.27.0"
}
},
"release": {
"tagFormat": "${version}",
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "chore",
"release": "patch"
},
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"manifest.json",
"versions.json"
],
"message": "release(version): Release ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "main.js",
"label": "main.js"
},
{
"path": "manifest.json",
"label": "manifest.json"
}
]
}
]
]
},
"engines": {
"node": "^22.14.0"
}
}