|
16 | 16 | "build:cjs": "tsc --build tsconfig.json && echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json", |
17 | 17 | "build:esm": "tsc --build tsconfig.esm.json && echo '{ \"type\": \"module\" }' > lib/esm/package.json", |
18 | 18 | "build": "npm run build:esm & npm run build:cjs", |
19 | | - "lint": "eslint --ext .ts,.js --no-error-on-unmatched-pattern .", |
20 | | - "lint-fix": "eslint --fix --ext .ts,.js --no-error-on-unmatched-pattern .", |
| 19 | + "lint": "biome lint .", |
| 20 | + "lint:fix": "biome check --write .", |
21 | 21 | "prepack": "node ../../.github/scripts/release_patch_package_json.js ." |
22 | 22 | }, |
23 | 23 | "repository": { |
24 | 24 | "type": "git", |
25 | 25 | "url": "git+https://github.com/aws-powertools/powertools-lambda-typescript.git" |
26 | 26 | }, |
27 | | - "files": [ |
28 | | - "lib" |
29 | | - ], |
| 27 | + "files": ["lib"], |
30 | 28 | "type": "module", |
31 | 29 | "exports": { |
32 | 30 | ".": { |
|
66 | 64 | "lib/cjs/resources/TestDynamodbTable.d.ts", |
67 | 65 | "lib/esm/resources/TestDynamodbTable.d.ts" |
68 | 66 | ], |
69 | | - "types": [ |
70 | | - "lib/cjs/types.d.ts", |
71 | | - "lib/esm/types.d.ts" |
72 | | - ], |
73 | | - "context": [ |
74 | | - "lib/cjs/context.d.ts", |
75 | | - "lib/esm/context.d.ts" |
76 | | - ] |
| 67 | + "types": ["lib/cjs/types.d.ts", "lib/esm/types.d.ts"], |
| 68 | + "context": ["lib/cjs/context.d.ts", "lib/esm/context.d.ts"] |
77 | 69 | } |
78 | 70 | }, |
79 | 71 | "types": "./lib/cjs/index.d.ts", |
80 | 72 | "main": "./lib/cjs/index.js", |
81 | | - "keywords": [ |
82 | | - "aws", |
83 | | - "lambda", |
84 | | - "powertools", |
85 | | - "testing", |
86 | | - "serverless" |
87 | | - ], |
| 73 | + "keywords": ["aws", "lambda", "powertools", "testing", "serverless"], |
88 | 74 | "license": "MIT-0", |
89 | 75 | "bugs": { |
90 | 76 | "url": "https://github.com/aws-powertools/powertools-lambda-typescript/issues" |
|
0 commit comments