-
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) · 1.84 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.84 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": "@depthbomb/node-common",
"version": "2.3.0",
"author": "depthbomb",
"description": "A set of common utilities and functions for Node.js",
"license": "MIT",
"engines": {
"node": ">=22"
},
"keywords": [
"typescript",
"nodejs",
"utilities"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./cancellation": {
"import": "./dist/cancellation.mjs",
"require": "./dist/cancellation.cjs"
},
"./lockfile": {
"import": "./dist/lockfile.mjs",
"require": "./dist/lockfile.cjs"
},
"./pathlib": {
"import": "./dist/pathlib.mjs",
"require": "./dist/pathlib.cjs"
},
"./platform": {
"import": "./dist/platform.mjs",
"require": "./dist/platform.cjs"
},
"./process": {
"import": "./dist/process.mjs",
"require": "./dist/process.cjs"
},
"./temp": {
"import": "./dist/temp.mjs",
"require": "./dist/temp.cjs"
}
},
"files": [
"dist"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/depthbomb/node-common.git"
},
"bugs": {
"url": "https://github.com/depthbomb/node-common/issues"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"dist": "tsdown",
"release": "yarn dist && release-it",
"lint": "eslint ./src --ext .ts",
"test": "vitest"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/eslint": "^9.6.1",
"@types/node": "^24.12.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"release-it": "^19.2.4",
"tsdown": "^0.21.5",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"packageManager": "yarn@4.13.0"
}