Skip to content

Commit

Permalink
bump @types/node to 16 (15 is not compatible with typescript 5)
Browse files Browse the repository at this point in the history
bump typescript to 5
  • Loading branch information
MrSpoocy committed May 2, 2024
1 parent 85db1f9 commit 6e61df0
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 18 deletions.
40 changes: 28 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "csinterface",
"version": "0.1.9",
"version": "0.2.0",
"description": "TypeScript version of Adobe CSInterface",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
Expand All @@ -13,6 +14,7 @@
},
"keywords": [
"CSInterface",
"IMSInterface",
"CEP",
"Adobe",
"ExtendScript",
Expand All @@ -24,9 +26,12 @@
"url": "https://github.com/ExtendScript/CSInterface/issues"
},
"homepage": "https://github.com/ExtendScript/CSInterface#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^8.6.0",
"typescript": "^3.6.0"
"@types/node": "^16.18.96",
"typescript": "^5.4.5"
},
"files": [
"lib/**/*"
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"src/**/*"
],
"exclude": ["node_modules"]
}
}
4 changes: 2 additions & 2 deletions window.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ declare global {
Buffer: Buffer
global: Window
process: NodeJS.Process
require: NodeRequireFunction
require: NodeJS.Require
__dirname: string
__filename: string
}
__adobe_cep__: CEP
}
}
}

0 comments on commit 6e61df0

Please sign in to comment.