-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.15 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.15 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "prettier-plugin-svelte",
"version": "4.1.0",
"description": "Svelte plugin for prettier",
"main": "plugin.js",
"files": [
"plugin.js",
"plugin.js.map",
"browser.js",
"index.d.ts"
],
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./plugin.js"
},
"./browser": "./browser.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "rollup -c",
"check": "tsc --noEmit",
"check:watch": "tsc --noEmit --watch",
"lint": "prettier --check .",
"format": "prettier --write .",
"test": "ava",
"prepare": "pnpm build",
"prepublishOnly": "pnpm test",
"changeset:version": "changeset version && git add --all",
"changeset:publish": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sveltejs/prettier-plugin-svelte.git"
},
"keywords": [
"prettier",
"svelte"
],
"author": "James Birtles <jameshbirtles@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sveltejs/prettier-plugin-svelte/issues"
},
"engines": {
"node": ">=20"
},
"homepage": "https://github.com/sveltejs/prettier-plugin-svelte#readme",
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "14.0.0",
"@rollup/plugin-node-resolve": "11.0.1",
"@types/node": "^20",
"ava": "3.15.0",
"prettier": "^3.8.0",
"rollup": "2.36.0",
"rollup-plugin-typescript": "1.0.1",
"svelte": "^5.56.0",
"ts-node": "^10.1.1",
"tslib": "^2.6.0",
"typescript": "5.1.3"
},
"packageManager": "pnpm@10.33.4+sha512.1c67b3b359b2d408119ba1ed289f34b8fc3c6873412bec6fd264fbdc82489e510fcbecb9ce9d22dae7f3b76269d8441046014bdca53b9979cd7a561ad631b800",
"peerDependencies": {
"prettier": "^3.0.0",
"svelte": "^5.0.0"
}
}