-
-
Notifications
You must be signed in to change notification settings - Fork 142
/
Copy pathpackage.json
50 lines (50 loc) · 1.71 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
{
"name": "tailwindcss-stimulus-components",
"version": "6.1.2",
"description": "A set of Stimulus components (tabs, dropdowns, modals, toggles, autosave, etc) for TailwindCSS users",
"source": "./src/index.js",
"main": "./dist/tailwindcss-stimulus-components.cjs",
"module": "./dist/tailwindcss-stimulus-components.module.js",
"files": [
"dist/*",
"src/*"
],
"repository": {
"url": "git+https://github.com/excid3/tailwindcss-stimulus-components.git",
"type": "git"
},
"author": "Chris Oliver <excid3@gmail.com>",
"contributors": [],
"license": "MIT",
"private": false,
"amdName": "TailwindcssStimulusComponents",
"keywords": [
"stimulus",
"stimulusjs",
"controller",
"tailwindcss",
"components"
],
"browserslist": [
"defaults",
"not IE 11"
],
"scripts": {
"dev": "esbuild src/index.js --format=esm --bundle --outfile=dist/tailwindcss-stimulus-components.module.js --watch",
"build": "npm run build-esm && npm run build-cjs",
"build-cjs": "esbuild src/index.js --format=cjs --target=es2020 --minify --bundle --sourcemap=external --external:@hotwired/stimulus --outfile=dist/tailwindcss-stimulus-components.cjs",
"build-esm": "esbuild src/index.js --format=esm --target=es2020 --minify --bundle --sourcemap=external --external:@hotwired/stimulus --outfile=dist/tailwindcss-stimulus-components.module.js",
"prepare": "npm run build",
"test": "web-test-runner",
"test:watch": "web-test-runner --watch"
},
"devDependencies": {
"@open-wc/testing": "^4.0.0",
"@web/test-runner": "^0.18.0",
"@web/test-runner-commands": "^0.9.0",
"esbuild": "^0.24.0"
},
"peerDependencies": {
"@hotwired/stimulus": ">= 3.0.0"
}
}