-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.88 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
{
"name": "@tembell/paresseux",
"version": "0.4.0",
"description": "🐨 Lazy & Synchronous flows for modals interactions in React",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vitest",
"test": "vitest run",
"build": "tsup src/index.ts src/helpers/index.ts --format cjs,esm --dts",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier **/*.{ts,tsx} --write",
"ci": "pnpm run lint && pnpm run test & pnpm run build",
"release": "pnpm run ci && changeset publish"
},
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@types/react": "^18.2.37",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"jsdom": "^22.1.0",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^8.0.1",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"private": false,
"keywords": [
"react",
"modals",
"management",
"async",
"await",
"complex flow"
],
"author": "Ariel Benichou",
"contributors": [
"Yair (https://github.com/yairopro)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tembell/paresseux.git"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
}
}