Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Rod Lewis committed Jul 8, 2022
1 parent edac784 commit 0bcc50f
Show file tree
Hide file tree
Showing 10 changed files with 999 additions and 0 deletions.
42 changes: 42 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"name": "worker-friend",
"author": "Rod Lewis",
"description": "Easily execute functions in web workers",
"version": "0.0.1",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "https://github.com/StudentOfJS/worker-friend.git"
},
"keywords": [
"typescript",
"web-worker",
"worker"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepack": "json -f package.json -I -e \"delete this.devDependencies;\"",
"test": "vitest --config ./vitest.config.ts",
"coverage": "vitest run --coverage"
},
"files": [
"dist"
],
"main": "./dist/workerFriend.umd.js",
"module": "./dist/workerFriend.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/workerFriend.es.js",
"require": "./dist/workerFriend.umd.js"
}
},
"devDependencies": {
"@types/node": "^18.0.0",
"typescript": "^4.7.4",
"vite": "^2.9.13",
"vite-plugin-dts": "^1.2.0"
}
}
Loading

0 comments on commit 0bcc50f

Please sign in to comment.