-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1009 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
{
"name": "prettier-config-atomic",
"version": "4.0.0",
"description": "The Prettier configuration used in atom-community",
"repository": "https://github.com/atom-community/prettier-config-atomic",
"license": "MIT",
"author": "Amin Yahyaabadi",
"type": "module",
"main": "dist/prettier.config.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc -p tsconfig.json --pretty",
"bump": "ncu -u",
"format": "prettier --write ./",
"lint": "eslint . --fix",
"prepare": "pnpm run build",
"test.format": "prettier ./ --check",
"test.lint": "eslint ."
},
"dependencies": {
"prettier": "3.1.1",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-packagejson": "^2.4.9",
"sort-package-json": "github:aminya/sort-package-json"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-atomic": "^1.20.6"
},
"keywords": [
"prettier",
"prettier-config",
"prettier-preset",
"format",
"beautify"
]
}