-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.16 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@openid/appauth",
"version": "1.4.0",
"description": "A general purpose OAuth client.",
"author": "The OpenID Foundation",
"license": "Apache-2.0",
"repository": "openid/AppAuth-JS",
"bugs": {
"url": "https://github.com/openid/AppAuth-JS/issues"
},
"files": [
"src/**",
"app/**",
"built/**"
],
"type": "module",
"main": "built/src/index.js",
"types": "built/src/index.d.ts",
"scripts": {
"app": "vite",
"prenode-app": "npm run-script --silent compile",
"node-app": "tsx built/src/node_app/index.js",
"prebuild-app": "npm run-script --silent compile",
"build-app": "vite build app",
"preminify": "npm run-script --silent build-app",
"minify": "java -jar node_modules/google-closure-compiler/compiler.jar --js built/app/bundle.js --js_output_file built/app/bundle_minified.js",
"precompile": "npm run-script --silent clean && npm run-script --silent format",
"compile": "node_modules/.bin/tsc",
"prepare": "npm run-script --silent build-app",
"format": "node_modules/.bin/clang-format -i -style=file --glob=src/**.ts",
"clean": "rm -rf built",
"pretest": "npm run-script --silent compile",
"test": "node_modules/.bin/vitest run",
"pregzipSize": "npm run-script --silent minify",
"gzipSize": "gzip -c built/app/bundle_minified.js | wc -c",
"prewatch": "npm run-script --silent format",
"watch": "node_modules/.bin/tsc --watch &"
},
"keywords": [
"OAuth",
"AppAuth",
"JavaScript",
"Node"
],
"devDependencies": {
"@types/follow-redirects": "^1.14.4",
"@types/hapi": "^18.0.15",
"@types/node": "^26.2.0",
"@types/opener": "^1.4.3",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitest/coverage-v8": "^4.1.10",
"clang-format": "^1.8.0",
"google-closure-compiler": "^20260811.0.0",
"http-server": "^14.1.1",
"jsdom": "^30.0.1",
"tsx": "^4.23.12",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"dependencies": {
"@types/base64-js": "^1.5.0",
"@types/jquery": "^4.0.1",
"base64-js": "^1.5.1",
"follow-redirects": "^1.16.0",
"form-data": "^4.0.6",
"opener": "^1.5.2"
}
}