-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.81 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.81 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
69
70
{
"name": "@nasriya/uuidx",
"version": "2.0.0",
"description": "UUIDx is a robust UUID generation library for Node.js, offering singleton-based management for UUIDv4 and deterministic UUIDv5 generation. It ensures uniqueness tracking, collision prevention, and clean TypeScript integration.",
"keywords": [
"uuid",
"uuidv4",
"uuidv5",
"guid",
"generator",
"unique-id",
"identifier",
"singleton",
"deterministic",
"crypto",
"typescript",
"esm",
"commonjs"
],
"type": "module",
"main": "./dist/cjs/uuidx.js",
"module": "./dist/esm/uuidx.js",
"types": "./dist/@types/uuidx.d.ts",
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": "./dist/esm/uuidx.js",
"require": "./dist/cjs/uuidx.js",
"types": "./dist/@types/uuidx.d.ts"
}
},
"scripts": {
"build": "npm run build:esm && npm run build:cjs && postbuild",
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"test": "jest --detectOpenHandles --runInBand",
"upgrade": "ncu -u --dep dev,peer"
},
"maintainers": [
{
"name": "Ahmad Nasriya",
"email": "ahmad@nasriya.net",
"url": "https://www.linkedin.com/in/ahmadnasriya/"
}
],
"repository": {
"type": "github",
"url": "https://github.com/nasriyasoftware/UUIDx-TS"
},
"bugs": {
"url": "https://github.com/nasriyasoftware/UUIDx-TS/issues"
},
"homepage": "https://package.nasriya.net/UUIDx",
"funding": {
"type": "individual",
"url": "https://fund.nasriya.net/"
},
"license": "NOL-1",
"author": "Nasriya Software",
"devDependencies": {
"@nasriya/postbuild": "^1.1.5",
"@types/jest": "^30.0.0",
"@types/ms": "^2.1.0",
"@types/node": "^25.6.0",
"nodemon": "^3.1.14",
"ts-jest": "^29.4.9"
}
}