-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·66 lines (66 loc) · 1.91 KB
/
package.json
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
{
"name": "@noelware/utils",
"description": "🐻❄️🌸 Extra utilities for Noelware's projects to keep code consistent",
"version": "2.5.1",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Noel Towa <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Noelware/utils.git"
},
"bugs": "https://github.com/Noelware/utils/issues",
"homepage": "https://docs.noelware.org/libraries/@noelware/utils",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./result": {
"require": "./dist/result.cjs",
"import": "./dist/result.js",
"types": "./dist/result.d.ts"
},
"./option": {
"require": "./dist/option.cjs",
"import": "./dist/option.js",
"types": "./dist/option.d.ts"
}
},
"files": [
"dist/",
"src/"
],
"funding": {
"url": "https://github.com/Noelware/utils?sponsor=1"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"lint": "bun scripts/eslint.ts",
"test": "bun test",
"fmt": "bun scripts/prettier.ts"
},
"devDependencies": {
"@actions/core": "1.11.1",
"@augu/eslint-config": "5.3.0",
"@augu/tsconfig": "1.2.0",
"@types/bun": "1.1.13",
"@types/node": "22.9.4",
"colorette": "2.0.20",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-formatter-codeframe": "7.32.1",
"eslint-plugin-perfectionist": "4.0.3",
"prettier": "3.3.3",
"tsup": "8.3.5",
"typescript": "5.7.2",
"typescript-eslint": "8.16.0"
}
}