@aneuhold/core-ts-api-lib 2.1.5 → 2.1.10

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/README.md +6 -8
  2. package/package.json +14 -15
package/README.md CHANGED
@@ -11,19 +11,17 @@ To add to a repo, follow the instructions below for your environment:
11
11
 
12
12
  ### For Node using NPM
13
13
 
14
- Run `yarn add @aneuhold/core-ts-api-lib`
14
+ Run `pnpm add @aneuhold/core-ts-api-lib`
15
15
 
16
16
  ### For Node using JSR
17
17
 
18
- The below instructions still allow for things like Renovate to work, and normal commands with yarn such as `yarn up`.
18
+ The below instructions still allow for things like Renovate to work, and normal commands with pnpm such as `pnpm up`.
19
19
 
20
- 1. Add the required JSR configuration to a `.yarnrc.yml` file if not there already:
21
- ```yml
22
- npmScopes:
23
- jsr:
24
- npmRegistryServer: 'https://npm.jsr.io'
20
+ 1. Add the required JSR configuration to a `.npmrc` file if not there already:
25
21
  ```
26
- 1. Add the package with `yarn add @jsr/aneuhold__core-ts-api-lib`
22
+ @jsr:registry=https://npm.jsr.io
23
+ ```
24
+ 1. Add the package with `pnpm add @jsr/aneuhold__core-ts-api-lib`
27
25
 
28
26
  ### For Deno
29
27
 
package/package.json CHANGED
@@ -2,19 +2,19 @@
2
2
  "name": "@aneuhold/core-ts-api-lib",
3
3
  "author": "Anton G. Neuhold Jr.",
4
4
  "license": "MIT",
5
- "version": "2.1.5",
5
+ "version": "2.1.10",
6
6
  "description": "A library for interacting with the backend and defining the backend API for personal projects.",
7
- "packageManager": "yarn@4.6.0",
8
7
  "type": "module",
9
8
  "scripts": {
10
9
  "build": "rimraf lib && tsc --project tsconfig.build.json && tsx ./scripts/copyTsFiles.ts",
10
+ "watch": "tsc -w -p tsconfig.build.json",
11
11
  "lint": "eslint",
12
12
  "test": "vitest run",
13
13
  "jsr:validate": "tb pkg validateJsr",
14
- "checkAll": "yarn build && yarn lint && yarn test && yarn jsr:validate",
14
+ "checkAll": "pnpm build && pnpm lint && pnpm test && pnpm jsr:validate",
15
15
  "jsr:publish": "tb pkg publishJsr",
16
- "upgrade:core": "yarn up '@aneuhold/*'",
17
- "upgrade:all": "yarn up"
16
+ "upgrade:core": "pnpm update '@aneuhold/main-scripts' --latest",
17
+ "upgrade:all": "pnpm up"
18
18
  },
19
19
  "main": "lib/index.js",
20
20
  "module": "lib/index.js",
@@ -30,12 +30,12 @@
30
30
  },
31
31
  "repository": {
32
32
  "type": "git",
33
- "url": "git+https://github.com/aneuhold/core-ts-api-lib.git"
33
+ "url": "git+https://github.com/aneuhold/ts-libs.git"
34
34
  },
35
35
  "bugs": {
36
- "url": "https://github.com/aneuhold/core-ts-api-lib/issues"
36
+ "url": "https://github.com/aneuhold/ts-libs/issues"
37
37
  },
38
- "homepage": "https://github.com/aneuhold/core-ts-api-lib#readme",
38
+ "homepage": "https://github.com/aneuhold/ts-libs/tree/main/packages/core-ts-api-lib#readme",
39
39
  "keywords": [
40
40
  "API",
41
41
  "Node.js",
@@ -43,19 +43,18 @@
43
43
  "TypeScript"
44
44
  ],
45
45
  "dependencies": {
46
- "@aneuhold/core-ts-db-lib": "^2.0.66",
47
- "@aneuhold/core-ts-lib": "^2.1.1",
46
+ "@aneuhold/core-ts-db-lib": "*",
47
+ "@aneuhold/core-ts-lib": "*",
48
48
  "bson": "^6.2.0"
49
49
  },
50
50
  "devDependencies": {
51
- "@aneuhold/eslint-config": "^1.0.89",
52
- "@aneuhold/main-scripts": "^2.0.13",
53
- "@types/node": "^22.15.2",
54
- "eslint": "^9.25.1",
51
+ "@aneuhold/main-scripts": "^2.1.6",
52
+ "@types/node": "^22.15.3",
53
+ "eslint": "^9.26.0",
55
54
  "jsr": "^0.13.4",
56
55
  "prettier": "^3.5.3",
57
56
  "rimraf": "^6.0.1",
58
- "tsx": "^4.19.3",
57
+ "tsx": "^4.19.4",
59
58
  "typescript": "^5.8.3",
60
59
  "vitest": "^3.1.2"
61
60
  }