Image/package.json
renovate[bot] dbddaf3bf0
chore: bump up all non-major dependencies (#91)
* chore: bump up all non-major dependencies

* fix image crate

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: LongYinan <lynweklm@gmail.com>
2024-04-18 17:58:10 +08:00

76 lines
1.6 KiB
JSON

{
"name": "image",
"private": true,
"license": "MIT",
"author": {
"name": "LongYinan",
"email": "github@lyn.one",
"url": "https://lyn.one"
},
"workspaces": [
"packages/*",
"website"
],
"devDependencies": {
"@napi-rs/cli": "^3.0.0-alpha.41",
"@taplo/cli": "^0.7.0",
"@types/node": "^20.11.16",
"@types/sharp": "^0.32.0",
"ava": "^6.1.1",
"blurhash": "^2.0.5",
"chalk": "^5.3.0",
"electron": "^30.0.0",
"lerna": "^8.1.2",
"npm-run-all2": "^6.0.0",
"prettier": "^3.2.5",
"rxjs": "^7.8.1",
"sharp": "^0.33.2",
"typescript": "^5.3.3"
},
"scripts": {
"artifacts": "lerna run artifacts",
"build:ts": "tsc -b tsconfig.project.json",
"format": "run-p format:prettier format:rs format:toml",
"format:prettier": "prettier . -w",
"format:rs": "cargo fmt",
"format:toml": "taplo format",
"test": "ava",
"test:electron": "yarn electron electron.js"
},
"prettier": {
"printWidth": 120,
"semi": false,
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "always"
},
"ava": {
"extensions": [
"mjs"
],
"timeout": "10m",
"workerThreads": false,
"environmentVariables": {
"NODE_ENV": "ava"
}
},
"lint-staged": {
"*.@(js|ts|json|md|yml|yaml)": [
"prettier --write"
],
"*.toml": [
"taplo format"
],
"*.rs": [
"cargo fmt --"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && cargo fmt --all"
}
},
"packageManager": "yarn@4.1.1",
"repository": "git@github.com:Brooooooklyn/Image.git"
}