-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
66 lines (66 loc) · 1.46 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
{
"name": "overlay-kit",
"version": "1.2.4",
"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": "https://github.com/toss/overlay-kit.git",
"directory": "packages"
},
"license": "MIT",
"author": {
"name": "Yongbeen Im",
"email": "been.im@toss.im"
},
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"test": "vitest run"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.5",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.3.0",
"jsdom": "^24.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"vite": "^5.2.13",
"vitest": "^1.6.0"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
}
}