-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 951 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
37
38
39
40
41
42
43
{
"name": "alpine-confetti",
"version": "1.0.0",
"description": "An Alpine.js plugin for canvas-confetti.",
"author": "Jack Webb-Heller",
"license": "MIT",
"keywords": [
"alpinejs",
"alpine",
"confetti",
"canvas-confetti"
],
"repository": {
"type": "git",
"url": "https://github.com/jackwh/alpine-confetti"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/plugin.mjs",
"types": "dist/plugin.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc && tsup",
"release": "npm run build && changeset publish",
"lint": "tsc"
},
"dependencies": {
"canvas-confetti": "^1.9.3"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@changesets/cli": "^2.26.0",
"@types/alpinejs": "^3.13.10",
"@types/canvas-confetti": "^1.6.4",
"eslint": "^9.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
}
}