-
Notifications
You must be signed in to change notification settings - Fork 0
/
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.6.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.290",
"@types/node": "^22.5.1",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.2",
"vite-plugin-dts": "^4.0.3",
"vitest": "^2.0.5",
"vitest-fetch-mock": "^0.4.1"
},
"optionalDependencies": {
"expo-secure-store": "*"
},
"packageManager": "[email protected]+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387",
"dependencies": {
"@kinde/jwt-decoder": "^0.2.0"
}
}