-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.52 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
47
48
49
50
51
52
53
{
"name": "@thundercraft5/node-deferred",
"version": "1.0.7",
"type": "module",
"keywords": [
"deferred",
"promise",
"que",
"qued",
"progress",
"notification",
"notify"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thundercraft5/node-deferred.git"
},
"bugs": {
"url": "https://github.com/thundercraft5/node-deferred/issues"
},
"homepage": "https://github.com/thundercraft5/node-deferred#readme",
"scripts": {
"prepublish": "npm run build",
"build:esm": "esbuild src/index.ts --outdir=dist/esm --sourcemap --bundle --platform=node --format=esm --target=esnext",
"build:cjs": "esbuild src/index.ts --outfile=dist/cjs/index.cjs --sourcemap --bundle --platform=node --format=cjs --target=esnext",
"build": "del-cli ./dist && npm run build:esm && npm run build:cjs && tsc"
},
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/index.cjs",
"types": "./dist/types/index.d.ts"
}
},
"author": "Thundercraft5",
"license": "MIT",
"dependencies": {
"@thundercraft5/node-errors": "latest"
},
"devDependencies": {
"@thundercraft5/eslint-plugin": "file:../../Libraries/NodeJS/eslint-plugin",
"@thundercraft5/tsconfig": "file:../../Libraries/NodeJS/tsconfig",
"@types/node-cron": "3.0.1",
"del-cli": "4.0.1",
"eslint": "8.17.0",
"ts-node": "10.8.1",
"typescript": "4.8.0-dev.20220604"
},
"description": "A library to manage large-scale cron jobs."
}