@ionify/ionify 0.1.4 → 0.1.5

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 (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +16 -13
package/README.md CHANGED
@@ -194,8 +194,8 @@ By unifying the build pipeline and persisting the dependency graph, Ionify creat
194
194
  ## Links
195
195
 
196
196
  - **Website:** [ionify.cloud](https://ionify.cloud)
197
- - **GitHub:** [github.com/khaledM-salem/Ionify](https://github.com/khaledM-salem/Ionify)
198
- - **Issues:** [github.com/khaledM-salem/Ionify/issues](https://github.com/khaledM-salem/Ionify/issues)
197
+ - **GitHub:** [github.com/ionifyjs/ionify](https://github.com/ionifyjs/ionify)
198
+ - **Issues:** [github.com/ionifyjs/ionify/issues](https://github.com/ionifyjs/ionify/issues)
199
199
  - **Contact:** contact@ionify.cloud
200
200
 
201
201
  ---
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@ionify/ionify",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "type": "module",
5
- "description": "A web infrastructure intelligence engine",
5
+ "description": "Ionify Instant, Intelligent, Unified Build Engine",
6
6
  "bin": {
7
- "ionify": "dist/cli/index.js"
7
+ "ionify": "./dist/cli/index.js"
8
8
  },
9
9
  "main": "./dist/index.js",
10
10
  "module": "./dist/index.js",
@@ -22,9 +22,14 @@
22
22
  }
23
23
  },
24
24
  "scripts": {
25
+ "dev": "pnpm build && node dist/cli/index.js dev",
25
26
  "build": "tsup --config tsup.config.ts && cp native/ionify_core.node dist/",
26
- "prepublishOnly": "pnpm build",
27
- "test": "vitest run"
27
+ "build:link": "pnpm clean && pnpm build && pnpm link --global",
28
+ "prepublishOnly": "pnpm clean && pnpm build",
29
+ "test": "vitest run",
30
+ "bench:minifier": "node scripts/bench-minifier.mjs",
31
+ "bench:cold-start": "node scripts/bench-cold-start.mjs",
32
+ "clean": "rm -rf dist .ionify target/debug target/release"
28
33
  },
29
34
  "files": [
30
35
  "dist",
@@ -32,23 +37,21 @@
32
37
  "LICENSE"
33
38
  ],
34
39
  "keywords": [
35
- "build-engine",
36
- "bundler",
37
- "rust",
38
40
  "vite",
39
41
  "rollup",
40
- "ionify",
41
- "typescript",
42
- "javascript"
42
+ "bundler",
43
+ "rust",
44
+ "build-engine",
45
+ "ionify"
43
46
  ],
44
47
  "author": "Khaled Salem",
45
48
  "license": "MIT",
46
49
  "repository": {
47
50
  "type": "git",
48
- "url": "git+https://github.com/ionifyjs/ionify.git"
51
+ "url": "git+https://github.com/khaledM-salem/Ionify.git"
49
52
  },
50
53
  "bugs": {
51
- "url": "https://github.com/ionifyjs/ionify/issues"
54
+ "url": "https://github.com/khaledM-salem/Ionify/issues"
52
55
  },
53
56
  "homepage": "https://ionify.cloud",
54
57
  "dependencies": {