-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.28 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.28 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@creowis/pretty-code",
"version": "1.0.0",
"description": "Opinionated Prettier config for React, Next.js and Node projects",
"main": "index.js",
"exports": {
".": "./index.js",
"./next": "./next.js",
"./node": "./node.js"
},
"bin": {
"pretty-code": "./cli.js"
},
"files": [
"index.js",
"next.js",
"node.js",
"cli.js",
"README.md"
],
"keywords": [
"prettier",
"prettier-config",
"prettier-plugin",
"code-formatting",
"nextjs",
"react",
"node",
"creowis",
"cli"
],
"scripts": {
"test": "node cli.js base",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CreoWis/pretty-code.git"
},
"author": "CreoWis",
"license": "MIT",
"type": "commonjs",
"peerDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.0.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.0"
},
"engines": {
"node": ">=16"
},
"bugs": {
"url": "https://github.com/CreoWis/pretty-code/issues"
},
"homepage": "https://github.com/CreoWis/pretty-code#readme",
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2"
}
}