-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.41 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.41 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
{
"name": "@goodbyenjn/utils",
"version": "26.3.0",
"description": "GoodbyeNJN's utils for typescript and javascript",
"keywords": [
"utils",
"typescript",
"javascript"
],
"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"
},
"type": "module",
"exports": {
".": {
"types": "./dist/common.d.ts",
"import": "./dist/common.js"
},
"./fs": {
"types": "./dist/fs.d.ts",
"import": "./dist/fs.js"
},
"./remeda": {
"types": "./dist/remeda.d.ts",
"import": "./dist/remeda.js"
},
"./result": {
"types": "./dist/result.d.ts",
"import": "./dist/result.js"
},
"./shell": {
"types": "./dist/shell.d.ts",
"import": "./dist/shell.js"
},
"./types": {
"types": "./dist/types.d.ts"
},
"./global-types": {
"types": "./dist/global-types.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "rolldown -c rolldown.config.ts -w",
"build": "rolldown -c rolldown.config.ts",
"check": "tsc && eslint && prettier --check .",
"typecheck": "tsc",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write .",
"test": "vitest",
"release": "bumpp"
},
"devDependencies": {
"@goodbyenjn/configs": "^6.1.4",
"@goodbyenjn/utils": "file:",
"@types/node": "^25.0.3",
"args-tokenizer": "^0.3.0",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"remeda": "^2.33.1",
"rolldown": "1.0.0-beta.58",
"rolldown-plugin-dts": "^0.20.0",
"rotery": "^0.7.0",
"safe-stable-stringify": "^2.5.0",
"tinyexec": "^1.0.2",
"tinyglobby": "^0.2.15",
"type-fest": "^5.3.1",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.0.5",
"vitest": "^4.0.16"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"engines": {
"node": ">=20"
}
}