generated from garronej/ts-ci
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·79 lines (79 loc) · 2.57 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "oidc-spa",
"version": "5.5.3",
"description": "Openidconnect client for Single Page Applications",
"repository": {
"type": "git",
"url": "git://github.com/keycloakify/oidc-spa.git"
},
"scripts": {
"prepare": "patch-package",
"build": "tsx scripts/build.ts",
"_format": "prettier '**/*.{ts,tsx,json,md}'",
"format": "yarn _format --write",
"format:check": "yarn _format --list-different",
"link-in-app": "tsx scripts/link-in-app.ts",
"start-react-router-example": "yarn build && tsx scripts/link-in-examples.ts && cd examples/react-router && rm -rf node_modules/.vite && yarn dev",
"start-tanstack-router-example": "yarn build && tsx scripts/link-in-examples.ts && cd examples/tanstack-router && rm -rf node_modules/.vite && yarn dev",
"start-tanstack-router-file-based-example": "yarn build && tsx scripts/link-in-examples.ts && cd examples/tanstack-router-file-based && rm -rf node_modules/.vite && yarn dev"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js",
"./mock": "./dist/mock/index.js",
"./react": "./dist/react/index.js"
},
"lint-staged": {
"*.{ts,tsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v"
}
},
"author": "u/garronej & u/ddecrulle",
"license": "MIT",
"files": [
"src/",
"dist/",
"!dist/tsconfig.tsbuildinfo"
],
"keywords": [],
"homepage": "https://docs.oidc-spa.dev/",
"dependencies": {},
"devDependencies": {
"@babel/core": "7.24.9",
"@babel/preset-env": "7.24.8",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.2.1",
"@types/react": "^18.2.6",
"babel-loader": "9.1.3",
"evt": "^2.5.7",
"husky": "^4.3.8",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "4.0.0",
"lint-staged": "^11.1.1",
"node-fetch": "2.7.0",
"@types/node-fetch": "2.6.11",
"oidc-client-ts": "3.1.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"ts-node": "^10.9.1",
"tsafe": "^1.7.5",
"tsx": "^4.15.5",
"typescript": "^5.5.4",
"webpack": "5.93.0",
"webpack-cli": "5.1.4",
"worker-timers": "7.1.7",
"zod": "^3.23.8",
"patch-package": "^8.0.0",
"punycode": "^2.3.1"
},
"publishConfig": {
"access": "public"
}
}