-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.47 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": "@radiantguild/yoogi",
"version": "1.0.4",
"type": "module",
"repository": "https://github.com/RadiantGuild/Lib.Yoogi",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./hook": {
"import": "./dist/hook.js",
"types": "./dist/hook.d.ts"
}
},
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"size": "size-limit",
"release": "pnpm build && changeset publish"
},
"keywords": [
"validation",
"tiny",
"react"
],
"author": "Alduino",
"packageManager": "[email protected]",
"size-limit": [
{
"name": "Main",
"path": "dist/index.js"
},
{
"name": "React hook",
"path": "dist/hook.js"
}
],
"files": [
"dist",
"hook.d.ts"
],
"devDependencies": {
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.20.0",
"@size-limit/preset-small-lib": "^7.0.5",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"prettier": "^2.5.1",
"react": "^16.8 || ^17 || ^18",
"size-limit": "^7.0.5",
"tsup": "^5.11.11",
"typescript": "^4.5.5"
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18"
},
"dependencies": {
"use-deep-compare-effect": "^1.8.1"
}
}