Skip to content

Commit f379fee

Browse files
committed
chore: fix release
1 parent 7ad869a commit f379fee

2 files changed

Lines changed: 15 additions & 3 deletions

File tree

package.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,24 @@
33
"type": "module",
44
"version": "0.1.0",
55
"description": "AWS SSM command-line and programmatic utility",
6+
"repository": "github:sidebase/ssm-secrets",
67
"bin": {
78
"ssm-secrets": "dist/cli.js"
89
},
9-
"main": "./dist/index.js",
1010
"exports": {
11-
".": "./dist/index.js",
11+
".": {
12+
"import": "./dist/index.js",
13+
"require": "./dist/index.js",
14+
"types": "./dist/index.d.ts"
15+
},
1216
"./cli": "./dist/cli.js"
1317
},
18+
"main": "./dist/index.js",
19+
"module": "./dist/index.js",
20+
"types": "./dist/index.d.ts",
21+
"files": [
22+
"dist"
23+
],
1424
"scripts": {
1525
"build": "tsc",
1626
"format": "eslint --fix",

tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@
33
"target": "ES2022",
44
"module": "NodeNext",
55
"moduleResolution": "NodeNext",
6+
"declaration": true,
67
"outDir": "dist",
78
"rootDir": "src",
89
"esModuleInterop": true,
910
"resolveJsonModule": true,
1011
"forceConsistentCasingInFileNames": true,
11-
"strict": true
12+
"strict": true,
13+
"skipLibCheck": true
1214
},
1315
"include": ["src"]
1416
}

0 commit comments

Comments
 (0)