-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.87 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
{
"name": "@litert/jwt",
"version": "0.2.0",
"description": "The JWT (JSON Web Token) implementation library written in TypeScript",
"type": "module",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"types": "./lib/index.d.ts",
"exports": {
".": {
"default": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
},
"scripts": {
"prepublishOnly": "npm run build-md-doc && npm run rebuild && npm run test",
"build": "echo Using TypeScript && tsc -v && tsc -p .",
"build-watch": "echo Using TypeScript && tsc -v && tsc -w -p .",
"build-md-doc": "./utils/generate-api-docs-md.sh",
"build-html-doc": "./utils/generate-api-docs-html.sh",
"rebuild": "npm run clean && npm run lint && npm run build",
"test": "node --enable-source-maps --test --experimental-test-coverage lib/*.test.js lib/**/*.test.js",
"clean": "rm -rf lib examples",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "./utils/eslint.sh",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/litert/jwt.js.git"
},
"bugs": {
"url": "https://github.com/litert/jwt.js/issues"
},
"homepage": "https://github.com/litert/jwt.js#readme",
"keywords": [
"litert",
"lrt",
"jwt",
"web",
"token",
"json"
],
"author": "Angus.Fenying <fenying@litert.org> (https://fenying.net)",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@litert/eslint-plugin-rules": "^0.3.1",
"@types/node": "^25.9.2",
"husky": "^9.1.7",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.12.0",
"typedoc-vitepress-theme": "^1.1.3",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@litert/utils-ts-types": "^2.2.0"
}
}