-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.56 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
68
{
"name": "@kreds/react",
"version": "0.0.1",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./dist/index.css": {
"require": "./dist/index.css",
"import": "./dist/index.css"
},
"./index.css": {
"require": "./dist/index.css",
"import": "./dist/index.css"
}
},
"scripts": {
"prepare": "npm run build",
"test": "jest",
"build": "vite build",
"lint": "eslint src"
},
"author": "Mat Sz <contact@matsz.dev>",
"license": "BSD-3-Clause-Clear",
"private": false,
"devDependencies": {
"@kreds/client": "^0.0.1",
"@kreds/types": "^0.0.1",
"@rollup/plugin-typescript": "^11.1.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@vitejs/plugin-react": "^4.0.4",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.62.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.4.9"
},
"peerDependencies": {
"@kreds/client": "^0.0.1",
"@kreds/types": "^0.0.1",
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"dependencies": {
"clsx": "^2.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/kreds/react.git"
},
"bugs": {
"url": "https://github.com/kreds/react/issues"
},
"homepage": "https://github.com/kreds/react"
}