mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
33 lines
726 B
JSON
33 lines
726 B
JSON
{
|
|
"author": "RageStudio",
|
|
"license": "LGPL-2.1",
|
|
"types": "index.d.ts",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages"
|
|
],
|
|
"lint-staged": {
|
|
"*.{js,jsx,less,md,json}": [
|
|
"prettier --write"
|
|
],
|
|
"*.ts?(x)": [
|
|
"prettier --parser=typescript --write"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"postinstall": "cd ./packages/comty && npm i",
|
|
"start": "cd ./packages/comty && npm start",
|
|
"update:deps": "yarn upgrade-interactive --latest"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
"@types/node": "^14.14.20",
|
|
"concurrently": "^5.3.0",
|
|
"cross-env": "^7.0.3",
|
|
"jsdoc": "^3.6.5"
|
|
},
|
|
"dependencies": {
|
|
"@ragestudio/nodecorejs": "^0.15.1"
|
|
}
|
|
}
|