Image/package.json
LongYinan b695642560
fix(binding): early return when input images are optimized (#28)
* fix(binding): early return when input images are optimized

* ci: fix builds

* Fix build

* target feature

* Remove inline

* Thin lto

* Use GCC
2022-12-20 17:42:28 +08:00

74 lines
1.5 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": "^2.13.2",
"@taplo/cli": "^0.5.2",
"@types/node": "^18.11.15",
"@types/sharp": "^0.31.0",
"ava": "^5.1.0",
"blurhash": "^2.0.4",
"chalk": "^5.2.0",
"lerna": "^6.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"rxjs": "^7.6.0",
"sharp": "^0.31.2",
"typescript": "^4.9.4"
},
"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"
},
"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@3.3.0",
"repository": "git@github.com:Brooooooklyn/Image.git"
}