-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.59 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@toolcase/base",
"version": "5.0.0",
"description": "Zero-dep JavaScript helpers and data structures for Node.js and the browser — events, async, collections, math, and more.",
"source": "src/main.ts",
"main": "lib/main.main.js",
"module": "lib/main.module.js",
"types": "lib/main.d.ts",
"exports": {
".": {
"types": "./lib/main.d.ts",
"import": "./lib/main.module.js",
"require": "./lib/main.main.js"
}
},
"sideEffects": false,
"scripts": {
"dev": "tsup --watch",
"build": "tsup"
},
"author": {
"name": "Daniel Kalevski",
"url": "https://kalevski.dev"
},
"homepage": "https://toolcase.kalevski.dev",
"keywords": [
"toolcase",
"helpers",
"utils",
"utilities",
"data-structures",
"events",
"emitter",
"async",
"collections",
"math",
"typescript",
"esm",
"nodejs",
"browser",
"zero-dependency"
],
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kalevski/toolcase.git",
"directory": "base"
},
"bugs": {
"url": "https://github.com/kalevski/toolcase/issues"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.0.0"
}
}