-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.02 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.02 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
{
"name": "@tinyhref/tiny-worker",
"version": "1.0.0",
"description": "Simplify Web Worker usage",
"keywords": [
"web-worker",
"webworker",
"tiny-worker",
"tinyworker",
"worker"
],
"author": "",
"homepage": "https://tinyhref.com",
"license": "MIT",
"main": "src/index.ts",
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinyhref/tiny-worker.git"
},
"scripts": {
"build": "tsup src --dts",
"dev": "pnpm build:fast --watch",
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit",
"build:fast": "tsup src",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"dependencies": {},
"peerDependencies": {},
"devDependencies": {
"@types/node": "^15.12.4",
"clean-package": "2.2.0",
"tsup": "8.4.0",
"typescript": "4.9.5"
},
"clean-package": "./clean-package.config.json",
"packageManager": "yarn@1.22.22"
}