comic-vine-sdk 1.2.7 → 1.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/.projenrc.ts +4 -16
  2. package/package.json +6 -5
package/.projenrc.ts CHANGED
@@ -1,24 +1,22 @@
1
1
  import { TypeScriptNpmPackage } from '@ally-murray/projen-modules';
2
2
 
3
- const repository = 'https://github.com/AllyMurray/comic-vine';
4
-
5
3
  const project = new TypeScriptNpmPackage({
6
4
  name: 'comic-vine',
7
5
  packageName: 'comic-vine-sdk',
8
6
  description: 'A JS/TS client for the Comic Vine API',
9
7
  defaultReleaseBranch: 'main',
10
- deps: ['axios', 'clone-deep', 'zod'],
8
+ minMajorVersion: 1,
9
+ minNodeVersion: '18.0.0',
10
+ repository: 'https://github.com/AllyMurray/comic-vine',
11
+ deps: ['axios', 'zod'],
11
12
  devDeps: [
12
13
  '@ally-murray/projen-modules',
13
- '@types/clone-deep',
14
14
  'commitizen',
15
15
  'husky',
16
16
  'lint-staged',
17
17
  'nock',
18
18
  'rimraf',
19
- 'vitest',
20
19
  ],
21
- minMajorVersion: 1,
22
20
  keywords: [
23
21
  'comic-metadata',
24
22
  'comic-vine-api',
@@ -35,16 +33,6 @@ const project = new TypeScriptNpmPackage({
35
33
  'comics',
36
34
  'metadata',
37
35
  ],
38
- repository,
39
- tsconfig: {
40
- compilerOptions: {
41
- module: 'Node16',
42
- target: 'ES2020',
43
- // @ts-expect-error types is missing from compilerOptions
44
- types: ['vitest/globals'],
45
- skipLibCheck: true,
46
- },
47
- },
48
36
  });
49
37
 
50
38
  project.synth();
package/package.json CHANGED
@@ -30,9 +30,8 @@
30
30
  "organization": false
31
31
  },
32
32
  "devDependencies": {
33
- "@ally-murray/projen-modules": "^0.0.11",
34
- "@types/clone-deep": "^4.0.2",
35
- "@types/node": "^16",
33
+ "@ally-murray/projen-modules": "^0.0.13",
34
+ "@types/node": "^18",
36
35
  "@typescript-eslint/eslint-plugin": "^6",
37
36
  "@typescript-eslint/parser": "^6",
38
37
  "commander": "^11.0.0",
@@ -57,7 +56,6 @@
57
56
  },
58
57
  "dependencies": {
59
58
  "axios": "^1.5.0",
60
- "clone-deep": "^4.0.1",
61
59
  "zod": "^3.22.2"
62
60
  },
63
61
  "pnpm": {},
@@ -77,10 +75,13 @@
77
75
  "comics",
78
76
  "metadata"
79
77
  ],
78
+ "engines": {
79
+ "node": ">= 18.0.0"
80
+ },
80
81
  "main": "lib/cjs/index.js",
81
82
  "license": "MIT",
82
83
  "homepage": "https://github.com/AllyMurray/comic-vine#readme",
83
- "version": "1.2.7",
84
+ "version": "1.2.8",
84
85
  "bugs": {
85
86
  "url": "https://github.com/AllyMurray/comic-vine/issues"
86
87
  },