-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.08 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
46
{
"name": "prettier-pnp",
"version": "0.3.0",
"packageManager": "pnpm@8.7.4",
"author": "auvred <aauvred@gmail.com> (https://github.com/auvred/)",
"type": "module",
"description": "Run Prettier with plugins without installing them manually",
"keywords": [
"format",
"prettier"
],
"homepage": "https://github.com/auvred/prettier-pnp#readme",
"repository": {
"type": "git",
"url": "https://github.com/auvred/prettier-pnp"
},
"license": "MIT",
"bin": "dist/bin.js",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"lint": "eslint .",
"release": "bumpp",
"test": "pnpm build && vitest",
"type-check": "tsc --noEmit",
"type-check-test": "tsc --noEmit -p tsconfig.test.json"
},
"dependencies": {
"import-meta-resolve": "^3.0.0",
"prettier": "^3.0.3"
},
"devDependencies": {
"@auvred/eslint-config": "^0.4.0",
"@types/node": "^18.17.14",
"bumpp": "^9.2.0",
"eslint": "^8.48.0",
"tsup": "^7.2.0",
"typescript": "~5.1.6",
"vitest": "^0.34.3"
}
}