-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.89 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.89 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
{
"name": "nts1-web-controller",
"version": "0.2.0",
"type": "module",
"private": true,
"description": "Control your KORG Nu:Tekt NTS-1 from Chrome web browser.",
"author": "Satoru SHIKATA (https://github.com/directions4/)",
"repository": {
"type": "git",
"url": "git://github.com:directions4/nts1-web-controller.git"
},
"homepage": "https://directions4.github.io/nts1-web-controller/",
"bugs": "https://github.com/directions4/nts1-web-controller/issues",
"keywords": [
"Korg",
"NTS-1",
"midi",
"synthesizer",
"vue"
],
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"lint": "eslint --ext .vue,.js,.ts src",
"type-check": "vue-tsc --noEmit",
"clean:docs": "rimraf ./docs",
"copy:dist": "cpx './dist/**/*' ./docs -C",
"gh-pages": "run-s build copy:dist"
},
"dependencies": {
"@quasar/extras": "^1.17.0",
"core-js": "^3.45.0",
"lodash": "^4.17.21",
"quasar": "^2.18.2",
"register-service-worker": "^1.7.2",
"vue": "^3.5.18",
"webmidi": "^3.1.12"
},
"devDependencies": {
"@babel/core": "^7.28.3",
"@babel/eslint-parser": "^7.28.0",
"@eslint/js": "^9.33.0",
"@quasar/vite-plugin": "^1.10.0",
"@types/lodash": "^4.17.19",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@vitejs/plugin-vue": "^5.2.4",
"@vitest/coverage-v8": "^3.2.4",
"@vue/test-utils": "^2.4.6",
"browser-sync": "^3.0.4",
"cpx": "^1.5.0",
"eslint": "^9.33.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^9.33.0",
"jsdom": "^26.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"sass": "^1.90.0",
"typescript": "^5.9.2",
"vite": "^6.3.5",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^2.2.10"
}
}