-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 847 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
{
"name": "zjax",
"version": "1.0.35",
"type": "module",
"description": "ZJAX is a lightweight yet powerful JavaScript library that brings modern SPA-like interactivity to your web pages with minimal effort.",
"main": "dist/zjax.min.js",
"scripts": {
"dev": "nodemon test/server.cjs",
"build": "esbuild src/main.js --bundle --minify --outfile=dist/zjax.min.js",
"size": "gzip -c dist/zjax.min.js | wc -c | awk '{print \"Gzipped and minified size: \" $1 / 1024 \" KB\"}'",
"semver": "node script/semver.cjs"
},
"files": [
"dist/zjax.min.js",
"Readme.md",
"CHANGELOG.md",
"LICENSE"
],
"keywords": [
"htmx",
"hypermedia",
"ajax"
],
"author": "Codepilot SF",
"license": "MIT",
"devDependencies": {
"esbuild": "0.24.2",
"express": "^4.21.2",
"nodemon": "^3.1.9"
}
}