forked from imacrayon/alpine-ajax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.36 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
{
"name": "@imacrayon/alpine-ajax",
"description": "Issue AJAX requests from AlpineJS components.",
"keywords": [
"AJAX",
"HTML",
"AlpineJS"
],
"version": "0.4.0",
"license": "MIT",
"author": "Christian Taylor",
"homepage": "https://alpine-ajax.js.org",
"repository": {
"type": "git",
"url": "https://github.com/imacrayon/alpine-ajax"
},
"files": [
"dist/",
"src/",
"builds/"
],
"main": "dist/module.cjs.js",
"module": "dist/module.esm.js",
"unpkg": "dist/cdn.min.js",
"scripts": {
"build": "node ./scripts/build.js",
"build:docs": "cd docs && env NODE_ENV=production npx eleventy",
"test": "cypress run",
"cypress": "cypress open",
"start": "cd docs && npx @11ty/eleventy --serve",
"debug": "DEBUG=* npx @11ty/eleventy"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.0-canary.15",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-bundle": "^1.0.4",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"@tailwindcss/forms": "^0.5.4",
"@tailwindcss/typography": "^0.5.9",
"alpinejs": "^3.11.1",
"autoprefixer": "^10.4.14",
"cypress": "^12.6.0",
"esbuild": "^0.17.8",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.6",
"postcss": "^8.4.27",
"tailwindcss": "^3.3.3"
},
"dependencies": {
"@alpinejs/morph": "^3.12.0"
}
}