-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@kinde/js-utils",
"private": false,
"description": "Selection of JavaScript utilities for integrating with Kinde",
"repository": {
"type": "git",
"url": "git+https://github.com/kinde-oss/js-utils.git"
},
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"version": "0.9.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "prettier --check . && eslint .",
"lint:fix": "prettier --write . && eslint . --fix"
},
"module": "dist/js-utils.js",
"main": "dist/js-utils.cjs",
"types": "dist/main.d.ts",
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/chrome": "^0.0.307",
"@types/node": "^22.5.1",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9.9.1",
"globals": "^16.0.0",
"jsdom": "^26.0.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.0.3",
"vitest": "^3.0.0",
"vitest-fetch-mock": "^0.4.1"
},
"optionalDependencies": {
"expo-secure-store": "*"
},
"packageManager": "[email protected]+sha512.da9dc28cd3ff40d0592188235ab25d3202add8a207afbedc682220e4a0029ffbff4562102b9e6e46b4e3f9e8bd53e6d05de48544b0c57d4b0179e22c76d1199b",
"dependencies": {
"@kinde/jwt-decoder": "^0.2.0"
}
}