-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "sequential-function-caller",
"version": "1.0.6",
"author": "Andrii Nastenko",
"description": "Package for calling a function multiple times, dividing the calls into chunks and executing them sequentially.",
"files": [
"./dist/**/*"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"types": "./dist/cjs/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/types/index.d.ts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"scripts": {
"clean": "del-cli ./dist",
"build:esm": "tsc -p ./tsconfig.esm.json && move-file ./dist/esm/index.js ./dist/esm/index.mjs",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"build": "npm run clean && npm run build:esm && npm run build:cjs"
},
"repository": {
"type": "git",
"url": "https://github.com/andrii-nastenko/sequential-function-caller.git"
},
"keywords": [
"sequential",
"function",
"chucks",
"caller"
],
"license": "MIT",
"devDependencies": {
"del-cli": "^5.1.0",
"move-file-cli": "^3.0.0",
"ts-node": "^10.9.1",
"tsup": "^7.3.0",
"typescript": "^5.3.2"
}
}