-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
77 lines (77 loc) · 1.87 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
{
"name": "overlay-kit",
"version": "1.4.1",
"description": "Next-generation tools for managing overlays",
"keywords": [
"overlay",
"react"
],
"homepage": "https://overlay-kit.slash.page",
"bugs": "https://github.com/toss/overlay-kit/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/toss/overlay-kit.git",
"directory": "packages"
},
"license": "MIT",
"author": {
"name": "Yongbeen Im",
"email": "been.im@toss.im"
},
"sideEffects": false,
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"test": "vitest run --coverage --typecheck",
"test:attw": "attw --pack",
"test:publint": "publint"
},
"dependencies": {
"use-sync-external-store": "^1.2.2"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.1",
"@testing-library/dom": "^10.3.2",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.5",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/use-sync-external-store": "^0.0.6",
"@vitest/coverage-v8": "^2.1.8",
"jsdom": "^24.0.0",
"publint": "^0.2.12",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"vite": "^6.0.3",
"vitest": "^2.1.8"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
}