-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 906 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
{
"name": "@singlepixellab/prettier-config",
"version": "1.0.0",
"description": "Prettier config used in Single Pixel Lab packages and projects",
"author": "Single Pixel Lab",
"license": "MIT",
"keywords": [
"prettier",
"prettier-config"
],
"homepage": "https://github.com/singlepixellab/prettier-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/singlepixellab/prettier-config.git"
},
"bugs": {
"url": "https://github.com/singlepixellab/prettier-config/issues"
},
"main": "index.js",
"exports": "./index.js",
"type": "module",
"publishConfig": {
"access": "public"
},
"prettier": "./index.js",
"scripts": {
"format": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"peerDependencies": {
"prettier": ">=3.0.0"
},
"devDependencies": {
"prettier": "^3.3.3"
}
}