forked from iamyoki/transition-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.97 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": "transition-hook",
"version": "1.5.2",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"author": "Yoki Yu <[email protected]>",
"description": "☄️ An extremely light-weight react transition animation hook which is simpler and easier to use than react-transition-group",
"keywords": [
"react",
"transition",
"hooks",
"css",
"animation",
"transition-hook",
"use-transition",
"react-transition-group"
],
"license": "MIT",
"scripts": {
"prepare": "husky install",
"📦 --- Builds": "",
"build:cjs": "tsc -p .",
"build:esm": "tsc -p . --module esnext --outDir dist/esm",
"build:types": "tsc -p . -d --emitDeclarationOnly --outDir dist/types",
"🌟 --- Mains": "",
"clean": "rimraf dist",
"build": "yarn clean && run-p build:*",
"dev": "yarn clean && run-p \"build:* --sourceMap --watch\"",
"lint": "eslint \"src/**/*.{ts,tsx}\" --fix",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@qhlab/eslint-plugin": "^1.10.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/react": "^17.0.37",
"conventional-changelog-conventionalcommits": "^4.6.1",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.1",
"semantic-release-cli": "^5.4.4",
"typescript": "^4.5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/iamyoki/transition-hook.git"
}
}