-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.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
{
"name": "@metools/utils",
"version": "1.1.1",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"node": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"type": "module",
"sideEffects": false,
"author": "Mathew E. Thompson",
"license": "Apache-2.0",
"description": "Common utilities that I use across my projects.",
"homepage": "https://github.com/methompson/metools_utils",
"repository": {
"type": "git",
"url": "git+https://github.com/methompson/metools_utils.git"
},
"scripts": {
"build": "tsup",
"lint": "eslint",
"test": "vitest --run",
"test:watch": "vitest"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"vitest": "^3.2.4"
}
}