-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.35 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.35 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
{
"name": "react-naver-maps-kit",
"private": true,
"packageManager": "pnpm@10.4.1",
"repository": {
"type": "git",
"url": "https://github.com/cobocho/react-naver-maps-kit.git"
},
"license": "MIT",
"homepage": "https://github.com/cobocho/react-naver-maps-kit",
"bugs": "https://github.com/cobocho/react-naver-maps-kit/issues",
"scripts": {
"build:lib": "pnpm --filter react-naver-maps-kit build",
"build:docs": "pnpm build:lib && pnpm --filter react-naver-maps-kit-docs build",
"build:playground": "pnpm build:lib && pnpm --filter playground build",
"check:lib": "pnpm -C packages/react-naver-maps-kit typecheck",
"changeset": "changeset",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"changeset:publish": "changeset publish",
"lint-staged": "lint-staged",
"format": "prettier --write \"packages/**/*.{js,jsx,ts,tsx,json,md}\"",
"prepare": "husky"
},
"lint-staged": {
"packages/**/*.{js,jsx,ts,tsx,json,md}": [
"prettier --write"
],
"packages/react-naver-maps-kit/**/*.{js,jsx,ts,tsx}": [
"pnpm --filter react-naver-maps-kit exec eslint --fix --max-warnings=0"
]
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"husky": "^9.1.7",
"lint-staged": "^15.2.7",
"prettier": "^3.5.3"
}
}