forked from make-live/toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 981 Bytes
/
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
{
"version": "0.0.1",
"description": "Packages related to making your own custom Make Live Launcher UI.",
"repository": {
"type": "git",
"url": "https://github.com/make-live/toolkit.git"
},
"author": "Make Live Team",
"license": "MIT",
"private": true,
"engines": {
"node": ">=14",
"yarn": "^1.22"
},
"scripts": {
"build": "wsrun -tm build",
"lint": "eslint .",
"prepare": "yarn-deduplicate && husky install",
"test": "wsrun -tm test"
},
"workspaces": [
"examples/*",
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"wsrun": "^5.2.4",
"yarn-deduplicate": "^5.0.0"
}
}