-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.27 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.27 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@goodbyenjn/utils",
"version": "26.5.0",
"description": "GoodbyeNJN's utils for typescript and javascript",
"keywords": [
"javascript",
"typescript",
"utils"
],
"homepage": "https://github.com/GoodbyeNJN/utils",
"bugs": {
"url": "https://github.com/GoodbyeNJN/utils/issues"
},
"license": "MIT",
"author": "GoodbyeNJN <cc@fuckwall.cc>",
"repository": {
"type": "git",
"url": "git+https://github.com/GoodbyeNJN/utils.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"exports": {
"./exec": {
"types": "./dist/exec/index.d.ts",
"import": "./dist/exec/index.js"
},
"./exec/safe": {
"types": "./dist/exec/safe.d.ts",
"import": "./dist/exec/safe.js"
},
"./fp": {
"types": "./dist/fp/index.d.ts",
"import": "./dist/fp/index.js"
},
"./fs": {
"types": "./dist/fs/index.d.ts",
"import": "./dist/fs/index.js"
},
"./fs/safe": {
"types": "./dist/fs/safe.d.ts",
"import": "./dist/fs/safe.js"
},
"./glob": {
"types": "./dist/glob/index.d.ts",
"import": "./dist/glob/index.js"
},
"./json": {
"types": "./dist/json/index.d.ts",
"import": "./dist/json/index.js"
},
"./json/safe": {
"types": "./dist/json/safe.d.ts",
"import": "./dist/json/safe.js"
},
"./option": {
"types": "./dist/option/index.d.ts",
"import": "./dist/option/index.js"
},
"./result": {
"types": "./dist/result/index.d.ts",
"import": "./dist/result/index.js"
},
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./types": {
"types": "./dist/types.d.ts"
},
"./global-types": {
"types": "./dist/global-types.d.ts"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"dev": "rolldown -w -c",
"build": "rolldown -c",
"check": "tsgo && oxlint && oxfmt --check",
"check:type": "tsgo",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt --check",
"format:write": "oxfmt",
"test": "vitest",
"test:ci": "vitest --run"
},
"dependencies": {
"remeda": "^2.34.1",
"rotery": "^0.7.0",
"type-fest": "^5.6.0"
},
"devDependencies": {
"@goodbyenjn/configs": "^26.5.2",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^25.7.0",
"@typescript/native-preview": "7.0.0-dev.20260513.1",
"args-tokenizer": "^0.3.0",
"cross-spawn": "^7.0.6",
"memfs": "^4.57.2",
"oxfmt": "^0.49.0",
"oxlint": "^1.64.0",
"oxlint-tsgolint": "^0.22.1",
"rolldown": "1.0.1",
"rolldown-plugin-dts": "^0.25.0",
"tinyglobby": "^0.2.16",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=20"
}
}