Skip to content

Commit 6e61df0

Browse files
committed
bump @types/node to 16 (15 is not compatible with typescript 5)
bump typescript to 5
1 parent 85db1f9 commit 6e61df0

File tree

4 files changed

+39
-18
lines changed

4 files changed

+39
-18
lines changed

package-lock.json

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

package.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"name": "csinterface",
3-
"version": "0.1.9",
3+
"version": "0.2.0",
44
"description": "TypeScript version of Adobe CSInterface",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
77
"scripts": {
8+
"build": "tsc",
89
"test": "echo \"Error: no test specified\" && exit 1"
910
},
1011
"repository": {
@@ -13,6 +14,7 @@
1314
},
1415
"keywords": [
1516
"CSInterface",
17+
"IMSInterface",
1618
"CEP",
1719
"Adobe",
1820
"ExtendScript",
@@ -24,9 +26,12 @@
2426
"url": "https://github.com/ExtendScript/CSInterface/issues"
2527
},
2628
"homepage": "https://github.com/ExtendScript/CSInterface#readme",
29+
"publishConfig": {
30+
"access": "public"
31+
},
2732
"devDependencies": {
28-
"@types/node": "^8.6.0",
29-
"typescript": "^3.6.0"
33+
"@types/node": "^16.18.96",
34+
"typescript": "^5.4.5"
3035
},
3136
"files": [
3237
"lib/**/*"

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
"src/**/*"
1616
],
1717
"exclude": ["node_modules"]
18-
}
18+
}

window.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ declare global {
6969
Buffer: Buffer
7070
global: Window
7171
process: NodeJS.Process
72-
require: NodeRequireFunction
72+
require: NodeJS.Require
7373
__dirname: string
7474
__filename: string
7575
}
7676
__adobe_cep__: CEP
7777
}
78-
}
78+
}

0 commit comments

Comments
 (0)