@glyphlang/win32-x64 0.1.58 → 0.1.59

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.
Files changed (3) hide show
  1. package/README.md +26 -0
  2. package/bin/glyph.exe +0 -0
  3. package/package.json +19 -4
package/README.md ADDED
@@ -0,0 +1,26 @@
1
+ # @glyphlang/win32-x64
2
+
3
+ The prebuilt `glyph` binary for Windows (x64).
4
+
5
+ You do not install this package directly. It is an optional dependency of
6
+ [`@glyphlang/glyph`](https://www.npmjs.com/package/@glyphlang/glyph), which picks
7
+ the one package matching your platform and runs the binary inside it:
8
+
9
+ ```sh
10
+ npm install -g @glyphlang/glyph
11
+ ```
12
+
13
+ The binary is built and published from source by the release workflow in
14
+ [chadetov/glyph](https://github.com/chadetov/glyph), with npm provenance and a
15
+ SLSA build attestation, so it can be traced to the commit and CI run that
16
+ produced it:
17
+
18
+ ```sh
19
+ npm audit signatures
20
+ ```
21
+
22
+ Glyph is a statically typed language that transpiles to TypeScript, designed so
23
+ AI agents can read, write, and modify code safely. See
24
+ [glyphlang.io](https://glyphlang.io).
25
+
26
+ Licensed MIT OR Apache-2.0.
package/bin/glyph.exe CHANGED
Binary file
package/package.json CHANGED
@@ -1,13 +1,28 @@
1
1
  {
2
2
  "name": "@glyphlang/win32-x64",
3
- "version": "0.1.58",
3
+ "version": "0.1.59",
4
4
  "description": "Prebuilt glyph compiler binary for Windows (x86_64).",
5
- "os": ["win32"],
6
- "cpu": ["x64"],
7
- "files": ["bin/"],
5
+ "os": [
6
+ "win32"
7
+ ],
8
+ "cpu": [
9
+ "x64"
10
+ ],
11
+ "files": [
12
+ "bin/"
13
+ ],
8
14
  "license": "MIT OR Apache-2.0",
15
+ "keywords": [
16
+ "glyph",
17
+ "compiler",
18
+ "binary"
19
+ ],
9
20
  "repository": {
10
21
  "type": "git",
11
22
  "url": "git+https://github.com/chadetov/glyph.git"
23
+ },
24
+ "homepage": "https://glyphlang.io",
25
+ "bugs": {
26
+ "url": "https://github.com/chadetov/glyph/issues"
12
27
  }
13
28
  }