-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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
57
58
59
60
61
62
63
{
"name": "prettier-plugin-svelte",
"version": "3.2.6",
"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": "npm run build",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sveltejs/prettier-plugin-svelte.git"
},
"keywords": [
"prettier",
"svelte"
],
"author": "James Birtles <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sveltejs/prettier-plugin-svelte/issues"
},
"homepage": "https://github.com/sveltejs/prettier-plugin-svelte#readme",
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "14.0.0",
"@rollup/plugin-node-resolve": "11.0.1",
"@types/node": "^14.0.0",
"ava": "3.15.0",
"prettier": "^3.0.0",
"rollup": "2.36.0",
"rollup-plugin-typescript": "1.0.1",
"svelte": "^5.0.0-next.243",
"ts-node": "^10.1.1",
"tslib": "^2.6.0",
"typescript": "5.1.3"
},
"peerDependencies": {
"prettier": "^3.0.0",
"svelte": "^5.0.0-next.243"
}
}