generated from blb-ventures/npm-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.12 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@blb-ventures/resource",
"version": "0.11.0",
"description": "",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./index.d.ts",
"files": [
"/lib",
"/index.d.ts"
],
"homepage": "https://github.com/blb-ventures/resource",
"repository": {
"type": "git",
"url": "https://github.com/blb-ventures/resource.git"
},
"bugs": {
"url": "https://github.com/blb-ventures/resource/issues"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "rollup --config rollup.config.js",
"build:cjs": "tsc -p tsconfig.cjs.json",
"prepack": "npm run build",
"lint": "eslint ./src",
"playground": "ts-node src/playground.ts"
},
"keywords": [],
"author": "Eduardo S Ciciliato",
"license": "ISC",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.mjs",
"types": "./index.d.ts"
},
"./package.json": "./package.json"
},
"devDependencies": {
"@blb-ventures/eslint-config": "^0.1.6",
"@rollup/plugin-typescript": "^11.0.0",
"@types/eslint": "^8.21.3",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"confusing-browser-globals": "^1.0.11",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"react": "^18.2.0",
"react-hook-form": "^7.43.7",
"rollup": "^3.20.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"zod": "^3.21.4"
},
"peerDependencies": {
"@types/react": "^18.0.28",
"react": "^18.2.0",
"react-hook-form": "^7.43.5",
"zod": "^3.21.4"
},
"contributors": [
{
"name": "Eduardo S Ciciliato",
"url": "https://eduardociciliato.com.br"
}
],
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
}
}