1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/tools/prettierd/package.json
2023-09-23 17:20:56 +02:00

46 lines
1 KiB
JSON

{
"name": "@fsouza/prettierd",
"version": "0.25.1",
"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.6.3",
"@types/prettier": "^3.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"core_d": "^6.0.0",
"prettier": "^3.0.3"
},
"files": [
"bin",
"dist",
"LICENSE",
"README.md"
],
"optionalDependencies": {
"@babel/parser": "^7.22.16",
"@typescript-eslint/typescript-estree": "^6.7.2"
}
}