mirror of
https://github.com/zoriya/yoshiki.git
synced 2025-12-05 22:56:14 +00:00
44 lines
1.0 KiB
JSON
44 lines
1.0 KiB
JSON
{
|
|
"name": "yoshiki-workspace",
|
|
"version": "1.0.0",
|
|
"main": "src/index.ts",
|
|
"author": "Zoe Roux <zoe.roux@sdg.moe>",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "yarn workspace yoshiki build",
|
|
"watch": "yarn workspace yoshiki watch",
|
|
"publish": "yarn build && yarn workspace yoshiki npm publish",
|
|
"next": "yarn workspace next-example dev",
|
|
"expo": "yarn workspace expo-example dev",
|
|
"lint": "eslint . --ext .ts,.tsx "
|
|
},
|
|
"workspaces": {
|
|
"packages": [
|
|
"packages/*",
|
|
"examples/*"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"useTabs": true,
|
|
"printWidth": 100,
|
|
"trailingComma": "all",
|
|
"plugins": [
|
|
"prettier-plugin-jsdoc"
|
|
],
|
|
"jsdocSingleLineComment": false,
|
|
"tsdoc": true
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.42.1",
|
|
"@typescript-eslint/parser": "^5.42.1",
|
|
"eslint": "8.27.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-header": "^3.1.1",
|
|
"prettier": "^2.7.1",
|
|
"prettier-plugin-jsdoc": "^0.4.2",
|
|
"typescript": "4.8.4"
|
|
},
|
|
"packageManager": "yarn@3.2.4"
|
|
}
|