@hanv89/arch-skill 0.0.0
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 +7 -0
- package/package.json +13 -0
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# @hanv89/arch-skill
|
|
2
|
+
|
|
3
|
+
Placeholder release to bootstrap npm **trusted publishing (OIDC)**. npm cannot
|
|
4
|
+
publish a package's first version via OIDC and cannot configure a trusted
|
|
5
|
+
publisher until the package exists, so this `0.0.0` placeholder is published
|
|
6
|
+
once manually to create the package. Real releases begin at `0.1.0` and are
|
|
7
|
+
published from CI via OIDC — see the project repository.
|
package/package.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hanv89/arch-skill",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Placeholder to bootstrap npm trusted publishing (OIDC). Real releases begin at 0.1.0.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"private": false,
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"README.md"
|
|
12
|
+
]
|
|
13
|
+
}
|