feat: init yarn project

This commit is contained in:
p-sw 2024-05-18 21:10:42 +09:00
parent e1efe9556a
commit 20476b8687
3 changed files with 18 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache
.yarn
node_modules

1
.yarnrc.yml Normal file
View File

@ -0,0 +1 @@
nodeLinker: node-modules

14
package.json Normal file
View File

@ -0,0 +1,14 @@
{
"name": "ui",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/p-sw/ui",
"author": "p-sw <shinwoo.park@psw.kr>",
"license": "MIT",
"workspaces": [
"packages/*",
"components"
],
"private": true,
"packageManager": "yarn@4.2.2+sha256.1aa43a5304405be7a7cb9cb5de7b97de9c4e8ddd3273e4dad00d6ae3eb39f0ef"
}