-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "async-worker-queue",
"version": "0.2.2",
"description": "A queue for async tasks that can be run in parallel with a maximum concurrency",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index",
"type": "module",
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"lint:check": "eslint src",
"lint": "eslint --fix src",
"prettier:check": "prettier src",
"prettier": "prettier --write src",
"prepare": "husky install",
"types": "tsc --noEmit",
"build": "tsup src/index.ts --dts --format esm,cjs",
"changeset": "changeset",
"release": "changeset version && changeset publish"
},
"keywords": [
"async",
"worker",
"queue"
],
"repository": "https://github.com/stampix/async-worker-queue",
"author": "Stampix <[email protected]> (https://stampix.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stampix/async-worker-queue"
},
"homepage": "https://github.com/stampix/async-worker-queue#readme",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"commitlint": "^17.6.3",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vitest": "^0.34.6"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix",
"tsc --noEmit"
]
}
}