@mutineerjs/mutineer 0.1.0 → 0.1.1

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 +1 -13
  2. package/package.json +17 -9
package/README.md CHANGED
@@ -48,20 +48,8 @@ Mutations are applied using Babel AST analysis, so operators inside strings and
48
48
 
49
49
  ## Installation
50
50
 
51
- Mutineer is not yet published to npm. Install it locally by linking:
52
-
53
51
  ```bash
54
- # Clone and build
55
- git clone <repo-url> mutineer
56
- cd mutineer
57
- npm install
58
- npm run build
59
-
60
- # Link globally
61
- npm link
62
-
63
- # In your project directory
64
- npm link mutineer
52
+ npm i @mutineerjs/mutineer
65
53
  ```
66
54
 
67
55
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mutineerjs/mutineer",
3
- "version": "v0.1.0",
3
+ "version": "v0.1.1",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "bin": {
@@ -27,7 +27,11 @@
27
27
  "mutate": "MUTINEER_DEBUG=0 tsx src/bin/mutineer.ts --config mutineer.config.ts"
28
28
  },
29
29
  "dependencies": {
30
+ "@babel/parser": "^7.28.4",
31
+ "@babel/traverse": "^7.28.4",
32
+ "@babel/types": "^7.28.4",
30
33
  "chalk": "^5.6.2",
34
+ "fast-glob": "^3.3.3",
31
35
  "ink": "^5.2.1",
32
36
  "ink-spinner": "^5.0.0",
33
37
  "magic-string": "^0.30.9",
@@ -35,25 +39,29 @@
35
39
  "tsx": "^4.20.6"
36
40
  },
37
41
  "peerDependencies": {
42
+ "@vitejs/plugin-vue": "^5.1.4",
43
+ "@vitest/coverage-v8": "^4.0.15",
38
44
  "@vue/compiler-sfc": ">=3.4.0",
39
- "esbuild": "^0.25.10"
45
+ "esbuild": "^0.25.10",
46
+ "vite": "^6.3.6",
47
+ "vitest": "^4.0.15"
48
+ },
49
+ "peerDependenciesMeta": {
50
+ "@vitejs/plugin-vue": { "optional": true },
51
+ "@vitest/coverage-v8": { "optional": true },
52
+ "@vue/compiler-sfc": { "optional": true },
53
+ "vitest": { "optional": true },
54
+ "vite": { "optional": true }
40
55
  },
41
56
  "devDependencies": {
42
- "@babel/parser": "^7.28.4",
43
- "@babel/traverse": "^7.28.4",
44
- "@babel/types": "^7.28.4",
45
57
  "@types/babel__traverse": "^7.28.0",
46
58
  "@types/node": "^24.7.0",
47
59
  "@types/react": "^19.2.14",
48
60
  "@typescript-eslint/eslint-plugin": "^8.47.0",
49
61
  "@typescript-eslint/parser": "^8.47.0",
50
- "@vitejs/plugin-vue": "^5.1.4",
51
- "@vitest/coverage-v8": "^4.0.15",
52
62
  "eslint": "^9.39.1",
53
- "fast-glob": "^3.3.3",
54
63
  "jsdom": "^27.0.0",
55
64
  "typescript": "^5.5.4",
56
- "vite": "^6.3.6",
57
65
  "vue": "^3.5.12"
58
66
  }
59
67
  }