-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "sample-tools",
"version": "1.0.0",
"description": "A browser-based tool for extracting loop points from WAV files and generating sampler presets for SFZ and Decent Sampler formats.",
"main": "dist/index.html",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"type-check": "vue-tsc --noEmit",
"preview": "vite preview",
"lint": "eslint . --fix",
"format": "prettier --write src/"
},
"keywords": [
"wav",
"samples",
"sfz",
"decent-sampler",
"loop-points",
"music-production"
],
"author": "Moray Macdonald",
"license": "ISC",
"packageManager": "pnpm@10.11.0",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"highlight.js": "^11.11.1",
"vue": "^3.5.16",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"@vitejs/plugin-vue": "^5.2.4",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.5.1",
"eslint": "^9.29.0",
"eslint-plugin-vue": "^9.33.0",
"globals": "^15.15.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1",
"vite": "^5.4.19",
"vue-eslint-parser": "^10.1.3",
"vue-tsc": "^2.0.0"
}
}