-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.55 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.55 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
{
"name": "@nexoracle/utils",
"version": "1.1.20",
"description": "A blazing-fast, flexible, and dependency-free utility library for JavaScript & TypeScript.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./browser": {
"import": "./dist/browser/index.mjs",
"require": "./dist/browser/index.cjs",
"types": "./dist/browser/index.d.ts"
}
},
"browser": {
"./dist/index.cjs": "./dist/browser/index.cjs",
"./dist/index.mjs": "./dist/browser/index.mjs"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist .tsbuildinfo",
"release": "npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nexoracle/utils.git"
},
"bugs": {
"url": "https://github.com/nexoracle/utils/issues"
},
"homepage": "https://utils.nexoracle.com",
"funding": {
"type": "patreon",
"url": "https://patreon.com/nexoracle"
},
"sideEffects": false,
"keywords": [
"utils",
"utility-library",
"javascript",
"typescript",
"performance",
"zero-dependency",
"esm",
"cjs",
"developer-tools",
"nodejs"
],
"author": "NexOracle (Maher Zubair) - support@nexoracle.com",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^22.13.10",
"tsup": "^7.2.0",
"typescript": "^5.8.2"
}
}