-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 KB
/
package.json
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
{
"name": "worker-mate",
"author": "Rod Lewis",
"description": "Easily execute functions in web workers",
"version": "1.0.0",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "https://github.com/StudentOfJS/worker-mate.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/workerMate.umd.js",
"module": "./dist/workerMate.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/workerMate.es.js",
"require": "./dist/workerMate.umd.js"
}
},
"devDependencies": {
"@types/node": "^18.0.0",
"json": "^11.0.0",
"typescript": "^4.7.4",
"vite": "^2.9.13",
"vite-plugin-dts": "^1.2.0"
}
}