-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 1.9 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
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
{
"name": "@carbonteq/jwt",
"version": "0.5.2",
"main": "index.js",
"types": "index.d.ts",
"scope": "@carbonteq",
"author": {
"name": "Muhammad Arslan",
"url": "https://github.com/volf52",
"email": "[email protected]"
},
"keywords": [
"jwt",
"jsonwebtoken",
"napi",
"napi-rs",
"carbonteq",
"N-API"
],
"repository": {
"type": "git",
"url": "https://github.com/carbonteq/jwt"
},
"bugs": {
"url": "https://github.com/carbonteq/jwt/issues"
},
"homepage": "https://github.com/carbonteq/jwt#readme",
"sideEffects": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
"node": {
"require": "./index.js",
"import": "./index.js",
"types": "./index.d.ts"
}
},
"napi": {
"name": "jwt",
"triples": {
"additional": [
"aarch64-apple-darwin",
"x86_64-unknown-linux-musl"
]
}
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@changesets/cli": "^2.27.7",
"@napi-rs/cli": "^2.18.3",
"@types/benchmark": "^2.1.5",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^22.0.2",
"ava": "^6.0.1",
"benchmark": "^2.1.4",
"chalk": "^5.3.0",
"esbuild": "^0.23.0",
"esbuild-runner": "^2.2.2",
"fast-jwt": "^4.0.2",
"jose": "^5.6.3",
"jsonwebtoken": "^9.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"ava": {
"timeout": "3m",
"failFast": false,
"require": [
"esbuild-runner/register.js"
],
"extensions": [
"cjs",
"mjs",
"js",
"ts"
]
},
"engines": {
"node": ">= 16"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"test": "ava",
"universal": "napi universal",
"bump": "changeset version && napi version",
"release": "changeset publish --no-git-tag"
},
"packageManager": "[email protected]"
}