-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
49
50
51
52
53
54
{
"name": "@nasriya/uuidx",
"version": "1.0.3",
"description": "A lightweight package to generate UUIDs on the go.",
"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"
}
},
"publishConfig": {
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/nasriyasoftware/UUIDX"
},
"keywords": [
"uuid-generator",
"uuid4",
"uuid-v4",
"uuidv5",
"uuid-v5"
],
"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",
"postbuild-init": "postbuild-init",
"test": "jest"
},
"author": "Nasriya Software, LLC.",
"license": "Nasriya License",
"devDependencies": {
"@nasriya/postbuild": "^1.0.1",
"@types/jest": "^29.5.12",
"@types/ms": "^0.7.34",
"@types/node": "^20.12.8",
"nodemon": "^3.0.3",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"funding": {
"type": "individual",
"url": "https://fund.nasriya.net/"
}
}