-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.57 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.57 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
{
"name": "@croquiscom/monolith",
"description": "kakakostyle frontend common utility library",
"license": "MIT",
"version": "0.4.0",
"packageManager": "pnpm@9.14.2",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:docs": "typedoc",
"lint:prettier": "prettier . --write",
"lint": "eslint ./src --ext .ts,.tsx",
"preview": "vite preview",
"docs": "http-server -o ./docs/index.html",
"docs:generate": "typedoc",
"docs:start": "docusaurus start",
"docs:build": "docusaurus build",
"test:type": "tsc --skipLibCheck",
"test": "vitest run",
"test:watch": "vitest watch",
"release:package": "pnpm run build && changeset publish"
},
"peerDependencies": {
"react": "^19 || ^18 || ^17",
"react-dom": "^19 || ^18 || ^17"
},
"dependencies": {
"blueimp-load-image": "^5.16.0",
"clsx": "^2.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@docusaurus/core": "3.7.0",
"@docusaurus/module-type-aliases": "^3.7.0",
"@docusaurus/preset-classic": "3.7.0",
"@docusaurus/tsconfig": "3.7.0",
"@docusaurus/types": "^3.7.0",
"@eslint/js": "^9.21.0",
"@mdx-js/react": "^3.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/blueimp-load-image": "^5.16.6",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.13.9",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react-swc": "^3.8.0",
"docusaurus-plugin-typedoc": "^1.2.3",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"http-server": "^14.1.1",
"jsdom": "^26.0.0",
"path": "^0.12.7",
"prettier": "^3.5.3",
"prism-react-renderer": "^2.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typedoc": "0.27.9",
"typedoc-material-theme": "^1.3.0",
"typedoc-plugin-markdown": "4.4.2",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.0",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.0.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/croquiscom/monolith.git"
},
"author": "bmo.star <bmo.star@kakaostyle.com>",
"contributors": [
"bmo.star <bmo.star@kakaostyle.com> "
]
}