-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.65 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.65 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@zickt/react",
"version": "0.1.0",
"description": "Official React SDK for Zickt (zickt.com) — add live chat, customer messaging, and support widgets to React apps",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"src",
"!src/tests"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint .",
"type-check": "tsgo --noEmit",
"clean": "rm -rf dist",
"check:publint": "publint",
"check:attw": "attw --pack .",
"check:size": "size-limit",
"check:types": "tsd",
"check:all": "pnpm check:publint && pnpm check:attw && pnpm check:size && pnpm check:types"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "3 kB"
}
],
"tsd": {
"directory": "src/tests/types"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@size-limit/preset-small-lib": "^12.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitest/coverage-v8": "^4.0.18",
"jsdom": "^24.1.0",
"publint": "^0.3.17",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^4.56.0",
"rollup-plugin-dts": "^6.3.0",
"size-limit": "^12.0.0",
"tsd": "^0.33.0",
"tslib": "^2.8.0",
"typescript": "^5.9.0",
"vitest": "^4.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zickt/react.git"
},
"homepage": "https://zickt.com/docs/channels/messenger/react",
"bugs": {
"url": "https://github.com/zickt/react/issues"
},
"author": {
"name": "Zickt",
"url": "https://zickt.com"
},
"funding": {
"type": "custom",
"url": "https://zickt.com"
},
"license": "MIT",
"keywords": [
"zickt",
"react",
"messenger",
"chat",
"widget",
"live-chat",
"customer-support",
"customer-messaging",
"support-widget",
"chat-widget",
"react-chat",
"intercom-alternative",
"intercom-react",
"helpdesk",
"in-app-messaging"
],
"sideEffects": false,
"type": "module"
}