-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.55 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
{
"name": "@auth0/auth0-cloudflare-agents-api",
"version": "1.0.0",
"description": "A PartyServer mixin for adding Auth0 API authentication to your PartyServer applications.",
"author": {
"name": "Auth0 Inc.",
"url": "https://auth0.com"
},
"license": "Apache-2.0",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"prepare": "npm run build && husky",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/compat": "^1.2.8",
"@eslint/js": "^9.24.0",
"@types/node": "^20.11.26",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"@vitest/coverage-v8": "^3.1.1",
"@vitest/ui": "^3.1.1",
"agents": "^0.2.11",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"flumix": "^1.0.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"prettier": "3.5.3",
"semantic-release": "^24.2.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1",
"vitest": "^3.1.1"
},
"peerDependencies": {
"partyserver": ">=0.0.67 <0.0.72"
},
"dependencies": {
"@auth0/auth0-api-js": "^1.0.1",
"react": "^19.2.1"
},
"publishConfig": {
"access": "public"
}
}