-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.82 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.82 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
{
"name": "tuneflow-devkit",
"version": "1.2.0",
"description": "Development Kit for TuneFlow plugins",
"main": "src/index.ts",
"scripts": {
"start-debugger": "concurrently --kill-others \"vite --config vite.dev.config.ts\" \"node src/debugger/dev_proxy.js\"",
"dev": "npm run build-protos && npm run start-debugger",
"test": "npm test",
"lint": "gts lint",
"lint:fix": "eslint --fix --ext .js,.ts,.vue",
"lint-staged": "lint-staged",
"lint-staged:ts": "eslint --ext .js,.ts,.vue",
"build-protos": "node scripts/build_protos.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andantei/tuneflow-devkit.git"
},
"keywords": [
"ai",
"music-composition",
"song-writing",
"music",
"development",
"SDK",
"tuneflow"
],
"author": "Andantei",
"license": "MIT",
"bugs": {
"url": "https://github.com/andantei/tuneflow-devkit/issues"
},
"homepage": "https://github.com/andantei/tuneflow-devkit#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged;npm run lint:tsc;"
}
},
"lint-staged": {
"**/*.{js,ts}": [
"git add",
"prettier --write",
"git add",
"eslint --ext .js,.ts",
"npm run lint-staged:ts --"
]
},
"devDependencies": {
"@msgpack/msgpack": "2.8.0",
"@tonejs/midi": "^2.0.28",
"@types/jest": "^28.1.1",
"@types/underscore": "^1.11.4",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/cli-plugin-eslint": "^5.0.0-0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-0",
"base64-arraybuffer": "^1.0.2",
"binary-search-bounds": "^2.0.5",
"concurrently": "^7.5.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-markdown": "^2.0.0",
"eslint-plugin-no-explicit-type-exports": "^0.12.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^7.1.0",
"express": "^4.18.2",
"flatted": "^3.2.5",
"husky": "^7.0.2",
"i18next": "^22.0.5",
"i18next-browser-languagedetector": "^7.0.1",
"jest": "^28.1.1",
"jest-junit": "^13.0.0",
"less": "^4.1.2",
"lint-staged": "^11.1.2",
"lodash.clonedeep": "^4.5.0",
"nanoid": "^3.3.2",
"prettier": "^2.4.1",
"protobufjs": "^7.1.2",
"protobufjs-cli": "^1.0.2",
"semver": "^7.3.5",
"socket.io": "^4.5.3",
"socket.io-client": "^4.5.3",
"ts-jest": "^28.0.5",
"ts-node": "^10.4.0",
"tuneflow": "^0.39.1",
"typescript": "^4.4.3",
"underscore": "^1.13.2",
"vite": "^3.2.1",
"vite-plugin-environment": "^1.1.3",
"vue": "^3.2.31",
"vue-tsc": "^1.0.9"
}
}