Skip to content

Commit

Permalink
🎉 @remote-kakao/rkeval-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
dn1t committed May 4, 2023
0 parents commit 1088168
Show file tree
Hide file tree
Showing 7 changed files with 430 additions and 0 deletions.
102 changes: 102 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
### Git ###
*.orig

*.BACKUP.*
*.BASE.*
*.LOCAL.*
*.REMOTE.*
*_BACKUP_*.txt
*_BASE_*.txt
*_LOCAL_*.txt
*_REMOTE_*.txt

### Linux ###
*~
.fuse_hidden*
.directory
.Trash-*

.nfs*

### macOS ###
Icon

.DS_Store
.AppleDouble
.LSOverride
._*
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
*.icloud

### Node ###
logs
*.log
.pnpm-debug.log*

report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

pids
*.pid
*.seed
*.pid.lock

build/Release

node_modules/

*.tsbuildinfo

.node_repl_history
*.tgz

.env
.env.development.local
.env.test.local
.env.production.local
.env.local

### Visual Studio Code ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets

*.vsix
.history/
.history
.ionide

### Windows ###
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
*.stackdump
[Dd]esktop.ini
$RECYCLE.BIN/

*.cab
*.msi
*.msix
*.msm
*.msp

*.lnk

## Extra ##
dist/
old/
38 changes: 38 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"name": "@remote-kakao/rkeval-plugin",
"version": "1.0.0",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"./*": {
"require": "./dist/cjs/*/index.js",
"import": "./dist/esm/*/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "concurrently \"$npm_execpath run build:esm\" \"$npm_execpath run build:cjs\"",
"watch": "concurrently \"$npm_execpath run build:esm -w\" \"$npm_execpath run build:cjs -w\"",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig-cjs.json",
"prepublishOnly": "$npm_execpath run build"
},
"author": "thoratica <me@tica.fun>",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.16.3",
"concurrently": "^8.0.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@remote-kakao/core": "link:../core"
}
}
221 changes: 221 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1088168

Please sign in to comment.