-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.03 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.03 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
119
120
{
"name": "@cleverse/ts-utilities",
"version": "1.3.6",
"description": "miscellaneous useful shared modern Typescript/Javascript packages by Cleverse",
"homepage": "https://github.com/cleverse/ts-utilities",
"repository": {
"type": "git",
"url": "https://github.com/cleverse/ts-utilities.git"
},
"author": "Cleverse Corporation Co., Ltd.",
"license": "MIT",
"type": "module",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"exports": {
"./dotrc/*": {
"default": "./dist/dotrc/*"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js",
"require": "./dist/*.cjs"
}
},
"typesVersions": {
"*": {
"*": [
"dist/*.d.ts"
]
}
},
"scripts": {
"build": "$npm_execpath typecheck && tsup --clean",
"postbuild": "node -e \"import('./tsup.config.mjs').then(m => m.createDirectoryProxyFiles())\"",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --report-unused-disable-directives",
"lint:fix": "eslint . --report-unused-disable-directives --fix",
"format": "prettier --check \"src/**/*.{ts,tsx,mjs,cjs,json}\"",
"format:fix": "prettier --write \"src/**/*.{ts,tsx,mjs,cjs,json}\"",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"check-update": "ncu --target=minor --cooldown=3",
"check-update:fix": "$npm_execpath check-update -u",
"prepublishOnly": "$npm_execpath build",
"husky": "husky",
"trivy": "trivy fs . --scanners vuln --severity CRITICAL,HIGH --exit-code 1 --include-dev-deps"
},
"packageManager": "pnpm@10.27.0",
"dependencies": {
"@eslint/eslintrc": "3.3.4",
"@eslint/js": "9.39.2",
"@google-cloud/kms": "5.4.0",
"@google-cloud/storage": "^7.19.0",
"@microsoft/microsoft-graph-types": "^2.43.1",
"@next/eslint-plugin-next": "16.1.1",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.51.0",
"async-mutex": "0.5.0",
"base64url": "^3.0.1",
"bignumber.js": "9.3.1",
"eslint-config-next": "16.1.1",
"eslint-plugin-import": "2.32.0",
"mime": "^4.1.0",
"pino": "10.1.0",
"pretty-ms": "9.3.0",
"retry": "0.13.1",
"superjson": "2.2.6",
"typescript-eslint": "8.51.0",
"uuid": "13.0.0",
"verror": "1.10.1"
},
"devDependencies": {
"@types/node": "25.0.3",
"@types/retry": "0.12.5",
"@types/verror": "1.10.11",
"dotenv": "17.2.3",
"eslint": "9.39.3",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"npm-check-updates": "19.3.1",
"pino-pretty": "13.1.3",
"prettier": "3.7.4",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.0.18",
"zod": "4.3.5"
},
"peerDependencies": {
"eslint": ">=9.0.0",
"pino-pretty": ">=13.0.0",
"typescript": ">=5.0.0",
"zod": "^3.25.0 || ^4.0.0"
},
"peerDependenciesMeta": {
"eslint": {
"optional": true
},
"pino-pretty": {
"optional": true
},
"zod": {
"optional": true
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,css,md}": [
"prettier --write \"**/*.{ts,tsx,mjs,cjs,json}\""
],
"*.{ts,tsx,mjs,cjs,json}": [
"eslint . --report-unused-disable-directives"
]
}
}