forked from shaunlee/alpinejs-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.06 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
{
"name": "@shaun/alpinejs-router",
"version": "1.3.1",
"description": "Easy to use and flexible router for Alpine.js",
"type": "module",
"main": "dist/module.cjs.js",
"module": "dist/module.esm.js",
"unpkg": "dist/cdn.min.js",
"keywords": [
"alpinejs-router",
"alpinejs router"
],
"scripts": {
"es2015": "esbuild builds/cdn.js --platform=browser --bundle --minify --target=es2015 --outfile=dist/es6.min.js",
"unpkg": "esbuild builds/cdn.js --platform=browser --bundle --minify --outfile=dist/cdn.min.js",
"cjs": "esbuild builds/module.js --platform=node --bundle --outfile=dist/module.cjs.js",
"esm": "esbuild builds/module.js --platform=neutral --bundle --outfile=dist/module.esm.js"
},
"author": "Shaun Li <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/shaunlee/alpinejs-router",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"babel-jest": "^29.7.0",
"esbuild": "^0.20.0",
"jest": "^29.7.0"
},
"peerDependencies": {
"alpinejs": "^3.0.0"
}
}