-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.04 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
{
"name": "inpost-geowidget-next",
"version": "1.0.0",
"description": "A package for utilizing the Inpost Geowidget in Next.js applications",
"keywords": [
"inpost",
"geowidget",
"nextjs",
"inpost-geowidget",
"inpost-geowidget-next"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"ci": "pnpm run build && pnpm run check-format && pnpm run check-exports",
"build": "tsc",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"test:run": "vitest run",
"test:dev": "vitest",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "pnpm run ci"
},
"homepage": "https://github.com/s0rus/inpost-geowidget-next",
"bugs": {
"url": "https://github.com/s0rus/inpost-geowidget-next/issues"
},
"author": "Piotr Mól <piotrmolkontakt@gmail.com> (https://devsor.us)",
"repository": {
"type": "git",
"url": "git+https://github.com/s0rus/inpost-geowidget-next.git"
},
"files": [
"dist"
],
"type": "module",
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@changesets/cli": "^2.27.9",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.7.7",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"jsdom": "^25.0.1",
"next": "^14.2.15",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"peerDependencies": {
"next": "^14.0.0",
"react": "^16.8 || ^17 || ^18",
"react-dom": "^16.8 || ^17 || ^18"
},
"dependencies": {
"inpost-geowidget-next": "link:"
}
}