forked from stimulus-components/stimulus-dropdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "stimulus-dropdown",
"version": "2.1.0",
"description": "A Stimulus controller to create a dropdown.",
"keywords": [
"stimulus",
"stimulusjs",
"stimulus controller",
"dropdown"
],
"repository": "[email protected]:stimulus-components/stimulus-dropdown.git",
"bugs": {
"url": "https://github.com/stimulus-components/stimulus-dropdown/issues"
},
"author": "Guillaume Briday <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/stimulus-components/stimulus-dropdown",
"private": false,
"main": "dist/stimulus-dropdown.umd.js",
"module": "dist/stimulus-dropdown.mjs",
"scripts": {
"format": "prettier-standard '**/*.{ts,css,html}' --format",
"lint": "prettier-standard '**/*.{ts,css,html}' --lint",
"dev": "vite",
"prod": "vite build --mode netlify",
"build": "tsc --noEmit && vite build",
"version": "yarn build",
"np": "np --no-2fa --no-tests"
},
"dependencies": {
"stimulus-use": "^0.51.1"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-typescript": "^7.18.6",
"@hotwired/stimulus": "^3.2.1",
"autoprefixer": "^10.4.13",
"np": "^7.6.2",
"postcss": "^8.4.20",
"prettier-standard": "16.4.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"vite": "^4.0.3"
},
"peerDependencies": {
"@hotwired/stimulus": "^3.0.0"
}
}