forked from Sub-Xaero/stimulus-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.65 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "stimulus-library",
"description": "A library of useful controllers for Stimulus",
"keywords": [
"stimulusjs",
"stimulus-js",
"stimulus library",
"stimulus controller",
"ruby on rails",
"ruby-on-rails"
],
"version": "0.7.4",
"license": "MIT",
"author": {
"name": "Sub-Xaero",
"url": "https://github.com/Sub-Xaero/"
},
"homepage": "https://sub-xaero.github.io/stimulus-library/",
"repository": {
"type": "git",
"url": "https://github.com/Sub-Xaero/stimulus-library"
},
"files": [
"dist"
],
"source": "src/index.ts",
"main": "dist/stimulus-library.umd.js",
"module": "dist/stimulus-library.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/stimulus-library.es.js",
"require": "./dist/stimulus-library.umd.js"
}
},
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly",
"dev": "vite build --watch",
"dev:types": "tsc --emitDeclarationOnly --watch",
"prepack": "yarn build",
"release": "standard-version",
"test": "cypress run",
"test:treeshake": "agadoo dist stimulus-library.js"
},
"dependencies": {
"date-fns": "^2.28.0",
"dialog-polyfill": "^0.5.6",
"lodash-es": "^4.17.21",
"mitt": "^3.0.0",
"smoothscroll-polyfill": "^0.4.4"
},
"peerDependencies": {
"stimulus": "^3.0.0 || ^2.0.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"@types/smoothscroll-polyfill": "^0.3.1",
"agadoo": "^2.0.0",
"cypress": "^9.4.1",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"stimulus": "^3.0.1",
"typescript": "^4.5.5",
"vite": "^2.7.13"
}
}