-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.5 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.5 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
{
"name": "auth-service",
"version": "1.0.0",
"description": "JWT-minting identity service for the MACP runtime (RFC-MACP-0004 §4).",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"macp",
"jwt",
"identity",
"auth",
"jwks"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/multiagentcoordinationprotocol/auth-service.git"
},
"bugs": {
"url": "https://github.com/multiagentcoordinationprotocol/auth-service/issues"
},
"homepage": "https://github.com/multiagentcoordinationprotocol/auth-service#readme",
"type": "commonjs",
"engines": {
"node": ">=20"
},
"dependencies": {
"express": "^5.2.1",
"jose": "^5.9.6"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.9",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}