-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
45 lines (45 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@fsouza/prettierd",
"version": "0.25.3",
"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": "^22.9.0",
"@types/prettier": "^3.0.0",
"typescript": "^5.6.3"
},
"dependencies": {
"core_d": "^6.1.0",
"prettier": "^3.3.3"
},
"files": [
"bin",
"dist",
"LICENSE",
"README.md"
],
"optionalDependencies": {
"@babel/parser": "^7.26.2",
"@typescript-eslint/typescript-estree": "^8.13.0"
}
}