forked from liveblocks/frimousse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.37 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.37 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
{
"name": "@gluegroups/frimousse",
"description": "A lightweight, unstyled, and composable emoji picker for React.",
"version": "0.3.3",
"license": "MIT",
"packageManager": "npm@11.6.0",
"type": "module",
"workspaces": [
".",
"site"
],
"sideEffects": false,
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist/**",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsup --watch",
"dev:site": "turbo run dev --filter=site",
"build": "tsup --minify",
"build:site": "turbo run build --filter=site",
"test": "vitest run --silent",
"test:watch": "vitest watch --silent",
"test:coverage": "npm run test -- --coverage",
"format": "biome check --write",
"lint": "turbo run lint:tsc lint:biome lint:package",
"lint:tsc": "tsc --noEmit",
"lint:biome": "biome lint",
"lint:package": "publint --strict && attw --pack",
"release": "release-it"
},
"peerDependencies": {
"react": "^18 || ^19",
"typescript": ">=5.1.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@biomejs/biome": "^2.3.8",
"@release-it/keep-a-changelog": "^7.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/react": "^19.0.10",
"@vitest/browser": "^3.0.8",
"@vitest/coverage-v8": "^3.0.8",
"emojibase": "^16.0.0",
"emojibase-data": "^16.0.2",
"jsdom": "^26.0.0",
"pkg-pr-new": "^0.0.41",
"playwright": "^1.51.0",
"publint": "^0.3.9",
"release-it": "^19.0.6",
"tsup": "^8.4.0",
"turbo": "^2.4.4",
"typescript": "^5.8.2",
"vitest": "^3.0.8",
"vitest-browser-react": "^0.1.1",
"vitest-fetch-mock": "^0.4.5"
},
"bugs": {
"url": "https://github.com/liveblocks/frimousse/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gluegroups/frimousse.git"
},
"homepage": "https://frimousse.liveblocks.io",
"keywords": [
"emoji",
"emoji picker",
"react",
"unstyled",
"component",
"emojibase",
"liveblocks"
]
}