-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.96 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.96 KB
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
67
68
69
70
71
72
73
74
75
76
{
"name": "react-tilty",
"version": "3.0.0",
"description": "A React port of the JS component tilt.js",
"license": "MIT",
"author": "Jonah Allibone",
"contributors": [
"Chris Sandvik"
],
"homepage": "https://codesandbox.io/s/73rqoq599j",
"repository": {
"type": "git",
"url": "https://github.com/jonahallibone/react-tilty"
},
"source": "src/index.tsx",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.modern.mjs"
},
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "microbundle build --jsx React.createElement",
"dev": "microbundle watch --jsx React.createElement",
"lint": "eslint src",
"prepublishOnly": "npm run lint && npm run build",
"postversion": "git push --tags"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"concurrently": "^7.6.0",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tsdoc": "^0.2.17",
"microbundle": "^0.15.1",
"prettier": "^2.8.3",
"prettier-package-json": "^2.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^4.1.2",
"typescript": "^4.9.5"
},
"keywords": [
"component",
"react",
"react-component",
"react-tilt",
"react-tilt.js",
"react-tilty",
"react.js",
"tilt",
"tilt.js",
"tilty",
"tilty.js",
"vanilla-tilt"
]
}