-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.49 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
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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "softkave-js-utils",
"version": "0.11.0",
"description": "JavaScript & Typescript utility functions, types, and classes",
"author": {
"email": "[email protected]",
"name": "softkave"
},
"license": "MIT",
"keywords": [
"utils",
"javascript utilities",
"array",
"error",
"function",
"id",
"logger",
"number",
"object",
"promise",
"string",
"testing",
"disposables",
"listenables",
"lock",
"timeout",
"cast",
"typescript type utilities"
],
"repository": {
"type": "git",
"url": "https://github.com/softkave/softkave-js-utils.git"
},
"bugs": {
"url": "https://github.com/softkave/softkave-js-utils/issues"
},
"homepage": "https://github.com/softkave/softkave-js-utils",
"type": "module",
"exports": {
".": "./build/index.js",
"./array": "./build/array/index.js",
"./error": "./build/error/index.js",
"./function": "./build/function/index.js",
"./id": "./build/id/index.js",
"./logger": "./build/logger/index.js",
"./number": "./build/number/index.js",
"./object": "./build/object/index.js",
"./other": "./build/other/index.js",
"./promise": "./build/promise/index.js",
"./string": "./build/string/index.js",
"./testing": "./build/testing/index.js",
"./structures": "./build/structures/index.js",
"./*": "./build/*"
},
"files": [
"build/{*.js,**/*.js}",
"build/{*.js.map,**/*.js.map}",
"build/{*.d.ts,**/*.d.ts}",
"!build/**/__tests__/**/*"
],
"scripts": {
"test": "vitest --config ./vitest.config.ts",
"lint": "gts lint",
"clean": "gts clean",
"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/index.ts",
"publish-to-npm": "npm run compile && npm publish",
"show-packlist": "npm run compile && npm pack --dry-run",
"publish-to-local": "npm run compile && yalc publish"
},
"engines": {
"node": ">=13"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "22.10.2",
"@types/path-browserify": "^1.0.2",
"gts": "^5.3.0",
"typescript": "~5.2.0",
"vitest": "^2.1.8"
},
"peerDependencies": {
"assert": "^2.1.0",
"lodash-es": "^4.17.21",
"nanoid": "^5.0.5",
"path-browserify": "^1.0.1",
"type-fest": "^4.10.2"
},
"dependencies": {
"js-accessor": "^1.2.0"
}
}