-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.07 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-tom-select",
"version": "0.2.1",
"description": "A Stimulus wrapper of the tom-select library",
"source": "src/index.js",
"exports": "./dist/stimulus-tom-select.modern.js",
"main": "./dist/stimulus-tom-select.cjs",
"module": "./dist/stimulus-tom-select.module.js",
"unpkg": "./dist/stimulus-tom-select.umd.js",
"typings": "./index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/bbonamin/stimulus-tom-select.git"
},
"author": "Bruno Bonamin <[email protected]>",
"contributors": [],
"license": "MIT",
"private": false,
"amdName": "StimulusTomSelect",
"keywords": [
"stimulus",
"stimulusjs",
"tom-select",
"selectize"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "yarn build",
"build": "microbundle src/index.js --globals @hotwired/stimulus=Stimulus"
},
"volta": {
"node": "16.14.2"
},
"devDependencies": {
"microbundle": "^0.14.2"
},
"peerDependencies": {
"@hotwired/stimulus": ">2",
"tom-select": ">=2.0.1 <3"
}
}