-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.52 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
{
"name": "react-kakao-postcode",
"version": "2.0.1",
"description": "React component wrapper for the Daum/Kakao Postcode (Korean address search) widget",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": [
"*.scss",
"*.css"
],
"dependencies": {},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"esbuild": "^0.28.2",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"rollup": "^4.62.4",
"rollup-plugin-sass": "^1.15.3",
"rollup-plugin-typescript2": "^0.37.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"engines": {
"node": ">=14"
},
"files": ["dist"],
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"prepublishOnly": "npm run build",
"build:e2e": "esbuild e2e/harness.tsx --bundle --outfile=e2e/dist/harness.js --loader:.scss=empty",
"test:e2e": "npm run build:e2e && playwright test",
"demo:dev": "npm --prefix demo run dev",
"demo:build": "npm --prefix demo run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PotLid/react-kakao-postcode.git"
},
"keywords": [
"react",
"kakao",
"daum",
"postcode",
"address",
"korea",
"zipcode"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/PotLid/react-kakao-postcode/issues"
},
"homepage": "https://github.com/PotLid/react-kakao-postcode#readme"
}