-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "spaify",
"version": "0.0.8",
"support": "unstable",
"description": "Seamless page transitions for your static site in less than 2kb of JavaScript",
"keywords": [
"ssg",
"turbolinks"
],
"homepage": "https://github.com/explodingcamera/esm/tree/main/packages/spaify",
"repository": "https://github.com/explodingcamera/esm",
"license": "MIT",
"author": "Henry Gressmann <mail@henrygressmann.de> (https://henrygressmann.de)",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./types/index.d.ts"
},
"./default": {
"require": "./dist/default.cjs",
"import": "./dist/default.js",
"types": "./types/default.d.ts"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup lib/index.ts lib/default.ts --no-splitting --target node20 --format esm --dts --sourcemap --minify"
},
"engines": {
"node": ">=20.0.0"
}
}