-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 979 Bytes
/
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
{
"name": "fiamma",
"version": "0.1.0",
"description": "⚡ A tiny, fast router to make your static website feel like a SPA",
"main": "dist/fiamma.umd.js",
"module": "dist/fiamma.esm.js",
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/orestbida/fiamma"
},
"homepage": "https://github.com/orestbida/fiamma#readme",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "rollup --config ./rollup.config.mjs --watch",
"build": "rollup --config ./rollup.config.mjs"
},
"keywords": [
"fiamma",
"router"
],
"author": "Orest Bida",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.2",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.0.2",
"terser": "^5.21.0"
},
"dependencies": {
"@orestbida/link-prefetcher": "^0.4.1"
}
}