-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.22 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
{
"author": "Andrew Zolotukhin <andrew_zol@cleverbrush.com>",
"bugs": {
"url": "https://github.com/cleverbrush/framework/issues",
"email": "andrew_zol@cleverbrush.com"
},
"description": "Various async utilities for Cleverbrush framework",
"files": [
"dist"
],
"homepage": "https://docs.cleverbrush.com/",
"keywords": [
"async utils",
"cleverbrush"
],
"license": "BSD 3-Clause",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"sideEffects": false,
"name": "@cleverbrush/async",
"readme": "https://github.com/cleverbrush/framework/tree/master/libs/async#readme",
"repository": {
"type": "git",
"url": "github:cleverbrush/framework"
},
"scripts": {
"watch": "tsc --build --watch",
"build": "tsup && rm -f tsconfig.build.tsbuildinfo && tsc --project tsconfig.build.json --emitDeclarationOnly",
"clean": "rm -rf dist tsconfig.tsbuildinfo"
},
"devDependencies": {
"@types/node": "^25.4.0"
},
"type": "module",
"types": "./dist/index.d.ts",
"version": "4.3.2"
}