@leismore/lmos-nodejs-primitives 1.2.0 → 1.2.2
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/LICENSE +1 -1
- package/README.md +7 -1
- package/dist/src/index.js +1 -1
- package/package.json +7 -4
- package/tsconfig.json +4 -7
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -27,10 +27,16 @@ import {
|
|
|
27
27
|
|
|
28
28
|
## License
|
|
29
29
|
|
|
30
|
-
© [Leismore](https://www.leismore.co)
|
|
30
|
+
© [Leismore](https://www.leismore.co) 2026
|
|
31
31
|
|
|
32
32
|
[MIT License](https://choosealicense.com/licenses/mit)
|
|
33
33
|
|
|
34
|
+
## Donation
|
|
35
|
+
|
|
36
|
+
* [Leismore](https://github.com/sponsors/leismore) on GitHub
|
|
37
|
+
|
|
38
|
+
Help us to pay our bills, so we can focus on developing and maintaining this project.
|
|
39
|
+
|
|
34
40
|
## Authors
|
|
35
41
|
|
|
36
42
|
* [Kyle Chine / Kai Qin / 秦凯](https://kyle.chine.leismore.org) since 03 Aug 2025
|
package/dist/src/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leismore/lmos-nodejs-primitives",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "Examples of all primitive values in JavaScript. Defined for writing unit test.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"JavaScript",
|
|
@@ -40,8 +40,11 @@
|
|
|
40
40
|
"build": "tsc"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@types/node": "^
|
|
44
|
-
"tsx": "^4.
|
|
45
|
-
"typescript": "^
|
|
43
|
+
"@types/node": "^24.13.2",
|
|
44
|
+
"tsx": "^4.22.4",
|
|
45
|
+
"typescript": "^6.0.3"
|
|
46
|
+
},
|
|
47
|
+
"allowScripts": {
|
|
48
|
+
"esbuild@0.28.1": true
|
|
46
49
|
}
|
|
47
50
|
}
|
package/tsconfig.json
CHANGED
|
@@ -1,19 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions":
|
|
3
3
|
{
|
|
4
|
-
"
|
|
5
|
-
"
|
|
4
|
+
"types": ["node"],
|
|
5
|
+
"lib": ["ES2024"],
|
|
6
|
+
"target": "ES2024",
|
|
6
7
|
"module": "nodenext",
|
|
7
8
|
"moduleResolution": "nodenext",
|
|
8
9
|
"strict": true,
|
|
9
10
|
"resolveJsonModule": true,
|
|
10
11
|
"declaration": true,
|
|
11
12
|
"allowJs": false,
|
|
12
|
-
"outDir": "dist"
|
|
13
|
-
"paths": {
|
|
14
|
-
"@lib/*": ["./src/lib/*"],
|
|
15
|
-
"@test/lib/*": ["./test/lib/*"]
|
|
16
|
-
}
|
|
13
|
+
"outDir": "dist"
|
|
17
14
|
},
|
|
18
15
|
"include": ["src/**/*", "test/**/*"]
|
|
19
16
|
}
|