-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.3 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
{
"name": "stimulus-confetti",
"version": "1.0.1",
"description": "The easiest way to add confetti to your StimulusJS app.",
"keywords": ["confetti", "stimulus", "stimulus js", "rails confetti", "ruby on rails confetti"],
"homepage": "https://github.com/avo-hq/stimulus-confetti",
"license": "MIT",
"author": "Adrian Marin <[email protected]> (https://avohq.io)",
"url" : "https://github.com/avo-hq/stimulus-confetti",
"funding": {
"type" : "individual",
"url" : "https://github.com/sponsors/adrianthedev"
},
"repository": {
"type": "git",
"url": "https://github.com/avo-hq/stimulus-confetti.git"
},
"private": false,
"type": "module",
"source": "src/index.js",
"exports": {
"require": "./dist/stimulus_confetti.cjs",
"default": "./dist/stimulus_confetti.modern.js"
},
"main": "./dist/stimulus_confetti.cjs",
"module": "./dist/stimulus_confetti.module.js",
"unpkg": "./dist/stimulus_confetti.umd.js",
"scripts": {
"build": "microbundle --globals @hotwired/stimulus=Stimulus",
"prepublish": "npm run build",
"dev": "microbundle watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"canvas-confetti": "^1.6.0"
},
"devDependencies": {
"@hotwired/stimulus": "^3.1.1",
"microbundle": "^0.15.1"
}
}