-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
122 lines (122 loc) · 3.4 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
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
115
116
117
118
119
120
121
122
{
"name": "front-chat-sdk",
"version": "1.1.2",
"description": "Front Chat SDK",
"keywords": [
"frontapp",
"front",
"chat",
"sdk"
],
"homepage": "https://github.com/frontapp/front-chat-sdk#readme",
"bugs": {
"url": "https://github.com/frontapp/front-chat-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frontapp/front-chat-sdk.git"
},
"license": "Apache-2.0",
"author": "Frontapp",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./helpers": {
"import": {
"types": "./dist/helpers/index.d.ts",
"default": "./dist/helpers/index.js"
},
"require": {
"types": "./dist/helpers/index.d.cts",
"default": "./dist/helpers/index.cjs"
}
},
"./hooks": {
"require": {
"types": "./dist/hooks/index.d.cts",
"default": "./dist/hooks/index.cjs"
},
"import": {
"types": "./dist/hooks/index.d.ts",
"default": "./dist/hooks/index.js"
}
},
"./types": {
"require": {
"types": "./dist/types/index.d.cts",
"default": "./dist/types/index.cjs"
},
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/types/index.js"
}
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"build:packages": "tsc && tsup",
"dev": "vite",
"dev:tsup": "tsup --watch",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"prepare": "husky install",
"prettier:check": "prettier --check --ignore-unknown '**/*'",
"prettier:fix": "prettier --write --ignore-unknown '**/*'",
"preview": "vite preview",
"sort-package-json:check": "sort-package-json --check",
"sort-package-json:fix": "sort-package-json",
"unused-exports": "ts-unused-exports ./tsconfig.json --excludePathsFromReport='vite.config.ts;lib/index.ts;tsup.config.ts;examples;'"
},
"lint-staged": {
"**/*": "npm run prettier:fix --"
},
"dependencies": {
"@vanilla-extract/css": "^1.14.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vanilla-extract/vite-plugin": "^3.9.2",
"@vitejs/plugin-react-swc": "^3.3.2",
"esbuild": "^0.24.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "3.1.0",
"sort-package-json": "^2.6.0",
"ts-unused-exports": "^10.0.1",
"tsup": "^8.3.5",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-node-polyfills": "^0.22.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}