-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "stimulus-transition",
"version": "1.1.2",
"description": "Enter/Leave transitions for stimulusJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Robbe Van Petegem <[email protected]>",
"license": "MIT",
"keywords": [
"stimulus",
"transitions"
],
"homepage": "https://github.com/robbevp/stimulus-transition",
"repository": "https://github.com/robbevp/stimulus-transition.git",
"bugs": "https://github.com/robbevp/stimulus-transition/issues",
"private": false,
"files": [
"src/",
"dist/",
"!dist/.keep",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint src -c .eslintrc.js --ext js,jsx,ts --fix",
"prepare": "tsc"
},
"peerDependencies": {
"stimulus": "^2.0.0 || ^3.0.0"
},
"devDependencies": {
"stimulus": "^3.0.1",
"typescript": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"prettier": "^3.1.1"
}
}