forked from swup/astro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.7 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
64
65
66
67
68
69
{
"name": "@swup/astro",
"description": "Smooth page transitions, smart preloading and more in Astro",
"version": "1.5.0",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"author": {
"name": "Philipp Daun",
"email": "[email protected]",
"url": "https://philippdaun.net"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/swup/astro.git"
},
"keywords": [
"astro",
"withastro",
"astro-component",
"astro-integration",
"swup",
"animation",
"transition",
"css",
"performance"
],
"bugs": "https://github.com/swup/astro/issues",
"homepage": "https://swup.js.org",
"exports": {
".": "./dist/index.js",
"./client": "./dist/client.js",
"./client/*": "./dist/client/*.js",
"./serialise": "./dist/serialise.js",
"./idle": "./dist/idle.js",
"./package.json": "./package.json"
},
"files": [
"src",
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@swup/a11y-plugin": "^4.0.0",
"@swup/body-class-plugin": "^3.0.0",
"@swup/debug-plugin": "^4.0.0",
"@swup/fade-theme": "^2.0.0",
"@swup/forms-plugin": "^3.0.0",
"@swup/head-plugin": "^2.0.0",
"@swup/overlay-theme": "^2.0.0",
"@swup/parallel-plugin": "^0.4.0",
"@swup/preload-plugin": "^3.0.0",
"@swup/progress-plugin": "^3.0.0",
"@swup/route-name-plugin": "^4.0.0",
"@swup/scripts-plugin": "^2.0.0",
"@swup/scroll-plugin": "^3.0.0",
"@swup/slide-theme": "^2.0.0",
"swup": "^4.0.0",
"swup-morph-plugin": "^1.0.0"
},
"devDependencies": {
"astro": "^2.0.0",
"typescript": "^5.0.0"
}
}