-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.64 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.64 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
{
"name": "@kinde/management-api-js",
"private": false,
"type": "module",
"files": [
"dist"
],
"version": "0.17.0",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/kinde-management-api-js.mjs",
"require": "./dist/kinde-management-api-js.cjs"
}
},
"main": "./dist/kinde-management-api-js.cjs",
"module": "./dist/kinde-management-api-js.mjs",
"types": "./dist/main.d.ts",
"scripts": {
"dev": "vite",
"prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > lib/version.ts",
"build": "tsc && vite build",
"prepare": "npm run build",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"spec:update": "curl -o spec/kinde-mgmt-api-specs.yaml https://api-spec.kinde.com/kinde-management-api-spec.yaml",
"spec:generate": "openapi-ts"
},
"devDependencies": {
"@hey-api/client-fetch": "^0.13.0",
"@hey-api/openapi-ts": "^0.71.1",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.1.5",
"prettier": "^3.2.5",
"typescript": "^5.9.3",
"vite": "^8.0.12",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.5",
"vitest-fetch-mock": "^0.4.5"
},
"dependencies": {
"@kinde/jwt-decoder": "^0.2.0",
"aws-jwt-verify": "^5.1.1",
"dotenv": "^17.0.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.34.1+sha512.b58fbde6dca66a929538021581f648b4570b6ca19b18e7cbd7f2c07a7b24454155388dacdf08f2af3678e88a6d1fe04f9d609df24bf51735a060ea041b374ab7"
}