@docx-sax/native-darwin-arm64 0.0.0-trusted-publishing-setup.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/index.d.ts +6 -0
- package/index.js +9 -0
- package/package.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# @docx-sax/native-darwin-arm64
|
|
2
|
+
|
|
3
|
+
Trusted-publishing bootstrap placeholder for `docx-sax`.
|
|
4
|
+
|
|
5
|
+
This package is intentionally published as `0.0.0-trusted-publishing-setup.0` so npm trusted publishing can be configured for the package name. It is not a functional DOCX parser/runtime package yet. Do not use it in applications.
|
|
6
|
+
|
|
7
|
+
The real implementation will replace this placeholder in a later alpha release.
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare const placeholder: true;
|
|
2
|
+
export declare const packageName: string;
|
|
3
|
+
export declare const version: string;
|
|
4
|
+
export declare function createNotImplementedError(): Error;
|
|
5
|
+
declare const _default: { placeholder: true; packageName: string; version: string; createNotImplementedError: typeof createNotImplementedError };
|
|
6
|
+
export default _default;
|
package/index.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export const placeholder = true;
|
|
2
|
+
export const packageName = "@docx-sax/native-darwin-arm64";
|
|
3
|
+
export const version = "0.0.0-trusted-publishing-setup.0";
|
|
4
|
+
|
|
5
|
+
export function createNotImplementedError() {
|
|
6
|
+
return new Error(`${packageName}@${version} is a trusted-publishing bootstrap placeholder and does not include the docx-sax runtime yet.`);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export default { placeholder, packageName, version, createNotImplementedError };
|
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@docx-sax/native-darwin-arm64",
|
|
3
|
+
"version": "0.0.0-trusted-publishing-setup.0",
|
|
4
|
+
"description": "macOS arm64 native payload placeholder for trusted publishing setup.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/anulman/docx-sax.git",
|
|
10
|
+
"directory": "packages/native-darwin-arm64"
|
|
11
|
+
},
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"exports": {
|
|
16
|
+
"types": "./index.d.ts",
|
|
17
|
+
"import": "./index.js",
|
|
18
|
+
"default": "./index.js"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"README.md",
|
|
22
|
+
"index.js",
|
|
23
|
+
"index.d.ts"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "node -e \"console.log(process.env.npm_package_name + ' skeleton ready')\"",
|
|
27
|
+
"test": "node -e \"import('./index.js').then(() => console.log(process.env.npm_package_name + ' skeleton import ok'))\""
|
|
28
|
+
}
|
|
29
|
+
}
|