-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.48 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.48 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@workos-inc/node",
"version": "8.11.0",
"description": "A Node wrapper for the WorkOS API",
"keywords": [
"workos"
],
"homepage": "https://github.com/workos/workos-node",
"bugs": {
"url": "https://github.com/workos/workos-node/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/workos/workos-node.git"
},
"license": "MIT",
"author": "WorkOS",
"type": "module",
"exports": {
".": {
"workerd": {
"import": "./lib/index.worker.mjs",
"require": "./lib/index.worker.cjs"
},
"edge-light": {
"import": "./lib/index.worker.mjs",
"require": "./lib/index.worker.cjs"
},
"convex": {
"import": "./lib/index.worker.mjs",
"default": "./lib/index.worker.cjs"
},
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"./worker": {
"import": "./lib/index.worker.mjs",
"require": "./lib/index.worker.cjs"
},
"./package.json": "./package.json"
},
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"types": "./lib/index.d.cts",
"files": [
"lib/",
"package.json"
],
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch",
"check:runtimes": "tsx scripts/ecosystem-check.ts",
"clean": "rm -rf lib",
"format": "prettier \"src/**/*.{js,ts,tsx}\" --write",
"lint": "eslint",
"prepublishOnly": "npm run build",
"prettier": "prettier \"src/**/*.{js,ts,tsx}\" --check",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.27.0",
"@eslint/js": "^10.0.0",
"@types/jest": "^30.0.0",
"@types/node": "~20",
"@typescript-eslint/parser": "^8.46.0",
"babel-jest": "^30.2.0",
"eslint": "^10.0.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-n": "^17.23.1",
"iron-webcrypto": "^2.0.0",
"jest": "30.3.0",
"jest-fetch-mock": "^3.0.3",
"jose": "^6.2.0",
"miniflare": "^4.20260302.0",
"prettier": "^3.5.3",
"publint": "^0.3.18",
"tsdown": "^0.21.0",
"tsx": "^4.20.6",
"typescript": "5.9.3",
"typescript-eslint": "^8.46.0"
},
"engines": {
"node": ">=20.15.0"
},
"inlinedDependencies": {
"iron-webcrypto": "2.0.0",
"jose": "6.2.1",
"uint8array-extras": "1.5.0"
}
}