forked from mayu-live/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 900 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
{
"name": "@mayu-live/main",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Main package.json for mayu",
"scripts": {
"build": "npm -w lib/mayu/client run build:production",
"prettier": "prettier --write '**/*'",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mayu-live/prototype.git"
},
"author": "",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/mayu-live/prototype/issues"
},
"homepage": "https://github.com/mayu-live/prototype#readme",
"workspaces": [
"lib/mayu/client"
],
"devDependencies": {
"@prettier/plugin-ruby": "^3.1.2",
"happy-dom": "^6.0.4",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mprocs": "^0.6.1",
"prettier": "^2.7.1"
},
"lint-staged": {
"*.{rb,js,jsx,ts,tsx,md,html,css}": "prettier --write"
}
}