-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.22 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
{
"name": "@phanect/utils",
"version": "4.0.0",
"description": "@phanect's personal utility library for JavaScript & TypeScript",
"repository": {
"type": "git",
"url": "git+https://github.com/phanect/utils.git"
},
"author": "Jumpei Ogawa (https://phanective.org)",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/universal.cjs",
"module": "./dist/universal.mjs",
"types": "./dist/universal.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/universal.d.mts",
"default": "./dist/universal.mjs"
},
"require": "./dist/universal.cjs"
},
"./nodejs": {
"types": "./dist/nodejs.d.mts",
"import": "./dist/nodejs.mjs",
"require": "./dist/nodejs.cjs"
}
},
"devDependencies": {
"@phanect/configs": "2026.7.9",
"@phanect/lint": "latest",
"@types/node": "^24.7.1",
"eslint": "^10.4.0",
"jiti": "^2.4.2",
"tsdown": "0.22.14",
"typescript": "^6.0.3",
"vitest": "^4.0.4"
},
"engines": {
"node": "^22.16.0 || ^24.0.0 || ^26.0.0"
},
"packageManager": "pnpm@11.3.0+sha512.2c403d6594527287672b1f7056343a1f7c3634036a67ffabfcc2b3d7595d843768f8787148d1b57cf7956c90606bbd192857c363af19e96d2d0ec9ec5741d215"
}