@aneuhold/core-ts-api-lib 2.1.5 → 2.1.9
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.
- package/README.md +6 -8
- 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 `
|
|
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
|
|
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 `.
|
|
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
|
-
|
|
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
|
+
"version": "2.1.9",
|
|
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": "
|
|
14
|
+
"checkAll": "pnpm build && pnpm lint && pnpm test && pnpm jsr:validate",
|
|
15
15
|
"jsr:publish": "tb pkg publishJsr",
|
|
16
|
-
"upgrade:core": "
|
|
17
|
-
"upgrade:all": "
|
|
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/
|
|
33
|
+
"url": "git+https://github.com/aneuhold/ts-libs.git"
|
|
34
34
|
},
|
|
35
35
|
"bugs": {
|
|
36
|
-
"url": "https://github.com/aneuhold/
|
|
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": "
|
|
47
|
-
"@aneuhold/core-ts-lib": "
|
|
46
|
+
"@aneuhold/core-ts-db-lib": "*",
|
|
47
|
+
"@aneuhold/core-ts-lib": "*",
|
|
48
48
|
"bson": "^6.2.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@aneuhold/
|
|
52
|
-
"@
|
|
53
|
-
"
|
|
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.
|
|
57
|
+
"tsx": "^4.19.4",
|
|
59
58
|
"typescript": "^5.8.3",
|
|
60
59
|
"vitest": "^3.1.2"
|
|
61
60
|
}
|