mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"name": "@fsouza/prettierd",
|
|
"version": "0.23.4",
|
|
"description": "prettier, as a daemon",
|
|
"bin": {
|
|
"prettierd": "./bin/prettierd"
|
|
},
|
|
"scripts": {
|
|
"prepare": "yarn build",
|
|
"build": "tsc -b",
|
|
"run": "node bin/prettierd",
|
|
"start": "node bin/prettierd start",
|
|
"prettier:check": "prettier --check .",
|
|
"prettier:fix": "prettier --write ."
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/fsouza/prettierd.git"
|
|
},
|
|
"author": "Francisco Souza",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/fsouza/prettierd/issues"
|
|
},
|
|
"homepage": "https://github.com/fsouza/prettierd",
|
|
"devDependencies": {
|
|
"@types/node": "^20.2.5",
|
|
"@types/prettier": "^2.7.2",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"dependencies": {
|
|
"core_d": "^5.0.1",
|
|
"nanolru": "^1.0.0",
|
|
"prettier": "^2.8.8"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"dist",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"optionalDependencies": {
|
|
"@babel/parser": "^7.22.3",
|
|
"@typescript-eslint/typescript-estree": "^5.59.7"
|
|
}
|
|
}
|