-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.7 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
67
{
"name": "@drpiou/react-theme",
"version": "0.0.3",
"description": "Creates a React theme context.",
"keywords": [],
"author": "Alex <hello@drpiou.dev>",
"homepage": "https://github.com/drpiou/react-theme#readme",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/drpiou/react-theme.git"
},
"bugs": {
"url": "https://github.com/drpiou/react-theme/issues"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/react-theme.umd.cjs",
"module": "./dist/react-theme.js",
"types": "./dist/react-theme.d.ts",
"exports": {
".": {
"import": "./dist/react-theme.js",
"require": "./dist/react-theme.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"toc": "gh-md-toc --insert"
},
"peerDependencies": {
"react": "^17.0.2 || ^18.0.0"
},
"devDependencies": {
"@drpiou/react-utils": "0.0.3",
"@drpiou/ts-utils": "0.0.3",
"@types/lodash": "^4.14.182",
"@types/node": "^18.6.4",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"@vitejs/plugin-react": "^2.0.0",
"eslint": "^8.14.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"lodash": "^4.17.21",
"prettier": "^2.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.6.4",
"vite": "^3.0.0",
"vite-plugin-dts": "^1.4.1"
},
"resolutions": {
"@types/react": "^17.0.48",
"@types/react-dom": "^17.0.17"
}
}