@crustjs/crust-windows-x64 0.2.1 → 0.3.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.
@@ -1,4 +1,4 @@
1
1
  [diffend] Oversized file quarantined before diffing.
2
2
  name: package/bin/crust-bun-windows-x64.exe
3
- size: 86206464 bytes
4
- sha256: 72f8fb9559b64906bb538a3582116ee8c8979aee2ed99f10196bf5a8b424130b
3
+ size: 86208512 bytes
4
+ sha256: 2a0330153ce958b96d0dbd9acd7a4206bd39ea65773fa3841be35103c6545ac7
@@ -0,0 +1,43 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "title": "package.json with a Crust build configuration",
4
+ "description": "package.json schema for CLIs built with Crust. Point \"$schema\" at ./node_modules/@crustjs/crust/schema/package.json to get completion for the \"crust\" block alongside the standard package.json fields.",
5
+ "type": "object",
6
+ "allOf": [
7
+ {
8
+ "$ref": "https://json.schemastore.org/package.json"
9
+ }
10
+ ],
11
+ "properties": {
12
+ "crust": {
13
+ "description": "Build configuration read by `crust build`. Every key is optional; unknown keys fail the build. Command names and their source entries come from the standard `bin` field.",
14
+ "type": "object",
15
+ "additionalProperties": false,
16
+ "properties": {
17
+ "runtime": {
18
+ "description": "Runtime the CLI is built for. Without it: deno.json/deno.jsonc selects deno; @types/node without @types/bun selects node; otherwise bun.",
19
+ "type": "string",
20
+ "enum": [
21
+ "bun",
22
+ "deno",
23
+ "node"
24
+ ]
25
+ },
26
+ "bunPlugins": {
27
+ "description": "Bun bundler plugin modules applied to Bun and Node builds, in order: bare names resolve from node_modules, paths from the project root; each must default-export the plugin. Rejected for Deno.",
28
+ "type": "array",
29
+ "items": {
30
+ "type": "string"
31
+ }
32
+ },
33
+ "include": {
34
+ "description": "Directories relative to the project root that `crust build` copies into .crust/root/ and into each platform package's bin/.",
35
+ "type": "array",
36
+ "items": {
37
+ "type": "string"
38
+ }
39
+ }
40
+ }
41
+ }
42
+ }
43
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crustjs/crust-windows-x64",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "description": "CLI tooling for the Crust framework",
5
5
  "license": "MIT",
6
6
  "author": "chenxin-yan",