-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.39 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
{
"name": "chord-lyrics",
"version": "0.3.0",
"description": "Display chord names over lyrics. Supports line wrapping, section headers and auto-detection.",
"main": "main.js",
"scripts": {
"dev": "node script/esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node script/esbuild.config.mjs production && node script/assemble-build.mjs",
"version": "node script/version-bump.mjs && git add manifest.json versions.json",
"test": "jest",
"deploy-test": "node script/deploy-to-vault.mjs"
},
"keywords": [
"music",
"chords",
"lyrics",
"obsidian",
"plugin"
],
"homepage": "https://github.com/nevernotmove/obsidian-chordlyrics",
"bugs": {
"url": "https://github.com/nevernotmove/obsidian-chordlyrics/issues"
},
"author": "nevernotmove (https://github.com/nevernotmove)",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"esbuild": "^0.16.13",
"esbuild-plugin-clean": "^1.0.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"obsidian": "^1.1.1",
"open": "^8.4.0",
"ts-jest": "^29.0.3",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
}
}