Skip to content

Commit 26dd273

Browse files
author
Paul Asjes
committed
Fix some issues with package.json
1 parent 287bbab commit 26dd273

File tree

3 files changed

+4
-34
lines changed

3 files changed

+4
-34
lines changed

package-lock.json

Lines changed: 2 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"scripts": {
1616
"clean": "rm -rf dist",
1717
"prebuild": "npm run clean",
18-
"build": "tsc --resolveJsonModule --project tsconfig-cjs.json",
18+
"build": "tsc --project tsconfig-cjs.json",
1919
"prepublishOnly": "npm run lint",
2020
"lint": "eslint \"src/**/*.ts*\"",
2121
"test": "echo \"Error: no test specified\" && exit 1"
@@ -31,14 +31,8 @@
3131
},
3232
"devDependencies": {
3333
"@types/node": "^20.14.2",
34-
"@typescript-eslint/eslint-plugin": "^6.7.4",
3534
"eslint": "^8.38.0",
3635
"eslint-config-prettier": "^9.1.0",
37-
"eslint-import-resolver-typescript": "^3.6.1",
38-
"eslint-plugin-import": "^2.28.1",
39-
"eslint-plugin-jsx-a11y": "^6.7.1",
40-
"eslint-plugin-react": "^7.33.2",
41-
"eslint-plugin-react-hooks": "^4.6.0",
4236
"eslint-plugin-require-extensions": "^0.1.3",
4337
"typescript": "^5.4.2",
4438
"typescript-eslint": "^7.2.0"

src/workos.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
import { WorkOS } from '@workos-inc/node';
22
import { WORKOS_API_HOSTNAME, WORKOS_API_HTTPS, WORKOS_API_KEY, WORKOS_API_PORT } from './env-variables.js';
3-
import packageJson from '../package.json';
43

54
const options = {
65
apiHostname: WORKOS_API_HOSTNAME,
76
https: WORKOS_API_HTTPS ? WORKOS_API_HTTPS === 'true' : true,
87
port: WORKOS_API_PORT ? parseInt(WORKOS_API_PORT) : undefined,
98
appInfo: {
109
name: 'authkit-remix',
11-
version: packageJson.version,
10+
version: '0.1.0',
1211
},
1312
};
1413

0 commit comments

Comments
 (0)