@a35hie/ts-pkg 0.3.0 → 0.3.1
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 +5 -2
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -18,6 +18,9 @@ Define your package configuration in TypeScript with type safety, auto-complete,
|
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
20
|
bun add -D @a35hie/ts-pkg
|
|
21
|
+
# or
|
|
22
|
+
npm add -D @a35hie/ts-pkg
|
|
23
|
+
# or whatever you prefer
|
|
21
24
|
```
|
|
22
25
|
|
|
23
26
|
## Usage
|
|
@@ -72,9 +75,9 @@ export default definePackage({
|
|
|
72
75
|
Generate your `package.json`:
|
|
73
76
|
|
|
74
77
|
```bash
|
|
75
|
-
|
|
78
|
+
ts-pkg
|
|
76
79
|
# or
|
|
77
|
-
|
|
80
|
+
ts-pkg package.ts package.json
|
|
78
81
|
```
|
|
79
82
|
|
|
80
83
|
## Syncing Dependencies
|
package/package.json
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a35hie/ts-pkg",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "TypeScript-based package.json with magical features",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"typescript",
|
|
7
|
+
"package-json",
|
|
8
|
+
"npm",
|
|
9
|
+
"bun",
|
|
10
|
+
"monorepo-tooling",
|
|
11
|
+
"nodejs"
|
|
12
|
+
],
|
|
5
13
|
"license": "Apache-2.0",
|
|
6
14
|
"repository": "https://github.com/a35hie/TsPkg",
|
|
7
15
|
"type": "module",
|