forked from sveltejs/kit
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 669 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 669 Bytes
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
{
"name": "@sveltejs/amp",
"version": "1.0.2",
"description": "AMP integration for SvelteKit",
"repository": {
"type": "git",
"url": "https://github.com/sveltejs/kit",
"directory": "packages/amp"
},
"license": "MIT",
"homepage": "https://kit.svelte.dev",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
},
"./package.json": "./package.json"
},
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"lint": "prettier --check . --config ../../.prettierrc --ignore-path .gitignore",
"format": "pnpm lint --write"
},
"peerDependencies": {
"@sveltejs/kit": "^1.0.0"
}
}