-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 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
{
"name": "cybertoken",
"version": "5.1.2",
"description": "A token format for APIs inspired by the GitHub's API token format.",
"keywords": [
"api",
"format",
"generator",
"secret",
"token"
],
"license": "ISC",
"author": "Niklas Mollenhauer",
"repository": {
"type": "git",
"url": "https://github.com/nikeee/cybertoken.git"
},
"bin": "dist/cli.mjs",
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"scripts": {
"build": "tsdown",
"ci": "oxlint --type-aware --type-check --deny-warnings -f github",
"docs": "typedoc",
"format": "oxfmt",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"test": "tsc --noEmit && node --test",
"test:coverage": "node --test --experimental-test-coverage",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^25.5.2",
"expect": "^30.3.0",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"oxlint-tsgolint": "^0.19.0",
"tsdown": "^0.21.7",
"typedoc": "^0.28.18"
},
"engines": {
"node": ">=20"
}
}