-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1019 Bytes
/
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
46
47
{
"name": "setup-prettier",
"version": "0.0.3",
"description": "Setup prettier with good defaults",
"keywords": [
"prettier",
"cli",
"prettier-config"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sajmoni/setup-prettier.git"
},
"license": "MIT",
"author": "sajmoni",
"type": "module",
"bin": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"build": "rm -rf dist && tsc",
"release": "np --no-tests",
"test": "npm run build && chmod +x dist/index.js && vitest"
},
"prettier": "prettier-config-one",
"dependencies": {
"chalk": "5.3.0",
"execa": "8.0.1",
"read-pkg": "9.0.1",
"sort-package-json": "2.6.0",
"write-pkg": "7.0.0"
},
"devDependencies": {
"get-bin-path": "11.0.0",
"np": "9.2.0",
"prettier": "3.1.1",
"prettier-config-one": "0.2.0",
"tempy": "3.1.0",
"tsconfig-one": "0.0.8",
"typescript": "5.3.3",
"vitest": "1.1.0"
},
"engines": {
"node": ">=20"
}
}