nixpkgs/pkgs/development/tools/prettierd/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.0 KiB
JSON
Raw Normal View History

2023-07-04 19:02:13 +00:00
{
"name": "@fsouza/prettierd",
2023-09-23 15:20:56 +00:00
"version": "0.25.1",
2023-07-04 19:02:13 +00:00
"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": {
2023-09-23 15:20:56 +00:00
"@types/node": "^20.6.3",
"@types/prettier": "^3.0.0",
"typescript": "^5.2.2"
2023-07-04 19:02:13 +00:00
},
"dependencies": {
2023-09-23 15:20:56 +00:00
"core_d": "^6.0.0",
"prettier": "^3.0.3"
2023-07-04 19:02:13 +00:00
},
"files": [
"bin",
"dist",
"LICENSE",
"README.md"
],
"optionalDependencies": {
2023-09-23 15:20:56 +00:00
"@babel/parser": "^7.22.16",
"@typescript-eslint/typescript-estree": "^6.7.2"
2023-07-04 19:02:13 +00:00
}
}