-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.94 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.94 KB
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
{
"name": "@atkvs/modal-renderer",
"private": false,
"version": "1.3.0",
"type": "module",
"description": "React hooks for modals-manager",
"keywords": [
"react",
"react-hooks",
"modal"
],
"main": "dist/index.js",
"homepage": "https://github.com/AtkishkinVlad/modal-renderer",
"bugs": {
"url": "https://github.com/AtkishkinVlad/modal-renderer/issues"
},
"license": "MIT",
"author": "Atkishkin Vlad <vladatkishkin@vk.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/AtkishkinVlad/modal-renderer.git"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "tsc && eslint .",
"format": "prettier --write .",
"check-format": "prettier --check .",
"ci": "npm run build && npm run check-format && npm run check-exports && npm run lint",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"release": "changeset && changeset version && changeset publish && npm run commit",
"publish": "npm publish --access=public",
"prepare": "npx lefthook install",
"commit": "better-commits"
},
"exports": {
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"devDependencies": {
"@arethetypeswrong/cli": "0.15.4",
"@changesets/cli": "2.27.7",
"@commitlint/cli": "19.4.1",
"@commitlint/config-conventional": "19.4.1",
"@eslint/js": "9.9.0",
"@types/node": "22.5.1",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"better-commits": "1.15.7",
"eslint": "9.9.0",
"eslint-plugin-react-hooks": "5.1.0-rc.0",
"eslint-plugin-react-refresh": "0.4.9",
"globals": "15.9.0",
"lefthook": "1.7.14",
"prettier": "3.3.3",
"tsup": "8.2.4",
"typescript": "5.5.3",
"typescript-eslint": "8.0.1"
},
"peerDependencies": {
"@types/react": "^17.0.0 || ^18.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
}
}