-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.62 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
{
"name": "@depthbomb/common",
"version": "3.1.0",
"description": "A set of common utilities for TypeScript/JavaScript",
"license": "MIT",
"engines": {
"node": ">=22"
},
"keywords": [
"typescript",
"utilities"
],
"exports": {
".": "./dist/index.mjs",
"./atomic": "./dist/atomic.mjs",
"./collections": "./dist/collections.mjs",
"./date": "./dist/date.mjs",
"./functional": "./dist/functional.mjs",
"./guards": "./dist/guards.mjs",
"./number": "./dist/number.mjs",
"./promise": "./dist/promise.mjs",
"./random": "./dist/random.mjs",
"./result": "./dist/result.mjs",
"./state": "./dist/state.mjs",
"./timing": "./dist/timing.mjs",
"./typing": "./dist/typing.mjs",
"./url": "./dist/url.mjs"
},
"types": "./dist/index.d.cts",
"files": [
"dist"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/depthbomb/js-common.git"
},
"bugs": {
"url": "https://github.com/depthbomb/js-common/issues"
},
"scripts": {
"dist": "tsdown",
"typecheck": "yarn dist && tsc -p tsconfig.json --noEmit",
"release": "yarn dist && release-it",
"lint": "eslint ./src ./test --ext .ts",
"test": "yarn dist && vitest --run"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/eslint": "^9.6.1",
"@types/node": "^24.12.2",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.1",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"release-it": "^20.0.1",
"tsdown": "^0.21.10",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"packageManager": "yarn@4.14.1"
}