porffor 0.55.16 → 0.55.17

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 CanadaHonk
3
+ Copyright (c) 2023-2025 Oliver Medhurst
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "porffor",
3
- "description": "a basic experimental wip aot optimizing js -> wasm engine/compiler/runtime in js",
4
- "version": "0.55.16",
5
- "author": "CanadaHonk",
3
+ "description": "An ahead-of-time JavaScript compiler",
4
+ "version": "0.55.17",
5
+ "author": "Oliver Medhurst <honk@goose.icu>",
6
6
  "license": "MIT",
7
7
  "scripts": {},
8
8
  "dependencies": {
@@ -26,9 +26,5 @@
26
26
  "bugs": {
27
27
  "url": "https://github.com/CanadaHonk/porffor/issues"
28
28
  },
29
- "homepage": "https://porffor.dev",
30
- "devDependencies": {
31
- "@codspeed/tinybench-plugin": "^3.1.1",
32
- "tinybench": "^2.9.0"
33
- }
29
+ "homepage": "https://porffor.dev"
34
30
  }
package/runner/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import fs from 'node:fs';
3
- globalThis.version = '0.55.16';
3
+ globalThis.version = '0.55.17';
4
4
 
5
5
  // deno compat
6
6
  if (typeof process === 'undefined' && typeof Deno !== 'undefined') {