-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.83 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
{
"name": "emoogle-emoji-picker",
"version": "1.0.2",
"description": "The emoji picker React component created and used by Emoogle, the best emoji desktop app for emoji fans.",
"keywords": [
"emoji",
"emoji picker",
"React",
"Emoogle"
],
"homepage": "https://github.com/xitanggg/emoogle-emoji-picker",
"bugs": {
"url": "https://github.com/xitanggg/emoogle-emoji-picker/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xitanggg/emoogle-emoji-picker.git"
},
"author": "Xitang Zhao <[email protected]> (https://emoogle.org/)",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js"
},
"./dist/index.css": {
"import": "./dist/index.css"
}
},
"scripts": {
"build": "tsup",
"dev": "vite",
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "tsc",
"ci": "npm run build && npm run check-format && npm run lint",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci",
"create-data": "tsx scripts/create-data"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"emoogle-emoji-search-engine": "^1.0.0",
"json-stringify-pretty-compact": "^4.0.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.14",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"zustand": "^5.0.1"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17",
"zustand": ">=4",
"emoogle-emoji-search-engine": ">=1"
}
}