-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
47
48
49
50
51
52
53
54
55
56
{
"name": "@hypernym/prettier-config",
"version": "3.2.3",
"author": "Hypernym Studio",
"description": "Hypernym's internal config for Prettier.",
"license": "MIT",
"repository": "hypernym-studio/prettier-config",
"homepage": "https://github.com/hypernym-studio/prettier-config",
"funding": "https://github.com/sponsors/ivodolenc",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./svelte": {
"types": "./dist/svelte/index.d.mts",
"import": "./dist/svelte/index.mjs"
}
},
"files": [
"dist"
],
"keywords": [
"prettier",
"prettier-config",
"presets",
"config",
"esm"
],
"scripts": {
"build": "hyperbundler",
"format": "prettier --config src/index.js --write .",
"prepublishOnly": "pnpm build"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"peerDependencies": {
"prettier": ">=3.0.0",
"prettier-plugin-svelte": ">=3.2.3"
},
"peerDependenciesMeta": {
"prettier-plugin-svelte": {
"optional": true
}
},
"devDependencies": {
"@hypernym/bundler": "^0.14.3",
"@hypernym/tsconfig": "^2.6.0",
"prettier": "^3.5.2",
"prettier-plugin-svelte": "^3.3.3"
}
}