-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.81 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.81 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
70
71
72
73
74
75
76
77
{
"name": "@okta/auth-foundation",
"version": "0.5.0",
"type": "module",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"author": "jared.perreault@okta.com",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">=20.11.0"
},
"files": [
"./LICENSE",
"./dist",
"*.md",
"package.json"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js"
},
"./client": {
"types": "./dist/types/client.d.ts",
"import": "./dist/esm/client.js"
},
"./internal": {
"types": "./dist/types/internal.d.ts",
"import": "./dist/esm/internal.js"
},
"./myaccount": {
"types": "./dist/types/MyAccountClient.d.ts",
"import": "./dist/esm/MyAccountClient.js"
},
"./package.json": "./package.json"
},
"sideEffects": [
"./src/oktaUserAgent.ts"
],
"scripts": {
"lint": "eslint --ext .js,.ts,.jsx .",
"build": "yarn build:esm && yarn build:types",
"build:watch": "rollup -c --watch & tsc --watch",
"build:esm": "rollup -c",
"build:types": "tsc",
"test": "yarn test:unit",
"test:unit": "jest",
"test:watch": "jest --watchAll",
"test:browser": "jest --config jest.browser.config.js",
"test:node": "jest --config jest.node.config.js"
},
"dependencies": {
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/rollup-config": "*",
"@repo/typescript-config": "*",
"eslint": "^8.56.0",
"rollup": "^4.18.0",
"jest": "^29.7.0",
"typescript": "^5.9.2"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22.13.1",
"onFail": "warn"
},
"packageManager": {
"name": "yarn",
"version": ">=1.19.0",
"onFail": "warn"
}
}
}