-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "cybertoken",
"version": "3.0.2",
"description": "A token format for APIs inspired by the GitHub's API token format.",
"author": "Niklas Mollenhauer",
"license": "ISC",
"type": "module",
"main": "dist/index.js",
"bin": "dist/cli.js",
"repository": {
"type": "git",
"url": "https://github.com/nikeee/cybertoken.git"
},
"scripts": {
"compile": "tsc",
"clean": "rimraf dist",
"ci": "tsc --noEmit && biome ci ./src",
"docs": "typedoc",
"format": "biome format --write ./src",
"test": "tsc --noEmit && vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch --coverage",
"prepublishOnly": "npm run clean && npm run compile"
},
"keywords": [
"token",
"api",
"format",
"secret",
"generator"
],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.10",
"@vitest/coverage-v8": "^3.0.4",
"rimraf": "^6.0.1",
"typedoc": "^0.27.6",
"vitest": "^3.0.4"
},
"engines": {
"node": ">=20"
}
}