-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.67 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.67 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
{
"name": "obsidian-tab-flow",
"version": "0.5.2",
"description": "Render, play and create guitar tabs. Write tabs in text. Modern music font and sound! (.alphatab, .gp, .gp3, .gp4, .gp5, .gpx) Powered by alphaTab.js.",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "npm run format && npm run lint:fix && node ./scripts/merge-styles.js --dir src/styles && node esbuild.config.mjs",
"build": "node ./scripts/merge-styles.js --dir src/styles && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production && echo ======================================= && echo ' build done.'",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"mix": "node ./scripts/mix-code.js --dir ../src",
"mix-player": "node ./scripts/mix-code.js --dir src/player",
"mix-tabview": "node ./scripts/mix-code-tabview.js --dir ../src",
"clean": "node ./scripts/clean.js",
"clean-build": "node ./scripts/clean.js --delete styles.css data.json main.js",
"lint": "eslint src --ext .ts,.js,.md,.json",
"lint:fix": "eslint src --ext .ts,.js,.md,.json --fix",
"format": "prettier --write \"src/**/*.{ts,js,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json,css,md}\"",
"check": "npm run clean && npm run lint && npm run lint:fix && npm run format && npm run format:check && npm run build && echo ======================================= && echo ' All checks passed successfully!'"
},
"keywords": [],
"author": "Jay Bridge",
"license": "MPL-2.0",
"devDependencies": {
"@types/node": "^25.3.3",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.0",
"builtin-modules": "5.0.0",
"esbuild": "0.27.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-obsidianmd": "^0.1.9",
"eslint-plugin-prettier": "^5.5.5",
"obsidian": "latest",
"prettier": "^3.8.2",
"tslib": "2.8.1",
"typescript": "^5.6.3"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/fold": "^0.19.4",
"@codemirror/highlight": "^0.19.8",
"@codemirror/language": "^6.12.3",
"@codemirror/matchbrackets": "^0.19.4",
"@codemirror/rangeset": "^0.19.2",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.4.1",
"@codemirror/stream-parser": "^0.19.9",
"@codemirror/view": "^6.26.3",
"@coderline/alphatab": "^1.8.2",
"@types/mime-types": "^3.0.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.2",
"color-convert": "^3.1.3",
"dom-to-image-more": "^3.7.2",
"jszip": "^3.10.1",
"lucide-react": "^0.577.0",
"mime-types": "^3.0.2",
"monkey-around": "^3.0.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"zustand": "^5.0.12"
}
}