-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.26 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.26 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "softkave-node-utils",
"version": "0.5.2",
"description": "Softkave Node.js utilities",
"author": {
"email": "[email protected]",
"name": "softkave"
},
"license": "MIT",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/softkave/softkave-node-utils.git"
},
"bugs": {
"url": "https://github.com/softkave/softkave-node-utils/issues"
},
"homepage": "https://github.com/softkave/softkave-node-utils",
"type": "module",
"exports": {
"./common": {
"types": "./build/common/index.d.ts",
"default": "./build/common/index.js"
},
"./next": {
"types": "./build/next/index.d.ts",
"default": "./build/next/index.js"
},
"./mongo": {
"types": "./build/mongo/index.d.ts",
"default": "./build/mongo/index.js"
},
"./server": {
"types": "./build/server/index.d.ts",
"default": "./build/server/index.js"
}
},
"files": [
"build/{*.js,**/*.js}",
"build/{*.cjs,**/*.cjs}",
"build/{*.js.map,**/*.js.map}",
"build/{*.cjs.map,**/*.cjs.map}",
"build/{*.d.ts,**/*.d.ts}",
"!build/**/__tests__/**/*"
],
"engines": {
"node": ">=13"
},
"scripts": {
"test": "vitest run --config ./vitest.config.ts",
"lint": "gts lint",
"clean": "gts clean && rm -f tsconfig.tsbuildinfo",
"compile": "npm run clean && tsc",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run lint",
"check:circular-deps": "npx dpdm --no-warning --no-tree 'src/**/*.*'",
"show:packlist": "npm run compile && npm pack --dry-run",
"publish:npm": "npm run compile && npm publish",
"publish:yalc": "npm run compile && yalc publish"
},
"peerDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^20",
"fimidx": "^0.5.0",
"lodash-es": "^4.17.21",
"next": "15.5.9",
"softkave-js-utils": "^0.17.1",
"zod": "^4.1.11",
"mongoose": "^9.1.6",
"jsonwebtoken": "^9.0.2",
"typescript": "^5.9.3",
"@types/jsonwebtoken": "^9.0.10"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"gts": "^6.0.2",
"prettier": "^3.6.2"
},
"dependencies": {
"uuid": "^13.0.0",
"assert": "^2.1.0"
}
}