-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (43 loc) · 1.37 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
{
"name": "@kinde/management-api-js",
"private": false,
"type": "module",
"files": [
"dist"
],
"version": "0.12.0",
"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-combined-api-specs.yaml",
"spec:generate": "npx @hey-api/[email protected]"
},
"module": "dist/kinde-management-api-js.cjs",
"main": "dist/kinde-management-api-js.cjs",
"types": "dist/main.d.ts",
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.0.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite": "^5.2.8",
"vite-plugin-dts": "^4.0.0",
"vitest": "^3.0.0"
},
"dependencies": {
"@kinde/jwt-decoder": "^0.2.0",
"aws-jwt-verify": "^4.0.1",
"dotenv": "^16.4.5"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387"
}