importy 0.0.7 → 0.0.10

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 -1
  2. package/package.json +59 -17
package/README.md CHANGED
@@ -4,7 +4,7 @@ A powerful CLI tool for analyzing JavaScript/TypeScript imports from libraries.
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/importy.svg)](https://www.npmjs.com/package/importy)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
- [![Tests](https://img.shields.io/badge/tests-passing-brightgreen.svg)](https://github.com/yourusername/importy)
7
+ [![Publish](https://github.com/tvshevchuk/Importy/actions/workflows/publish.yml/badge.svg)](https://github.com/tvshevchuk/Importy/actions/workflows/publish.yml)
8
8
 
9
9
  ## Overview
10
10
 
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "importy",
3
- "version": "0.0.7",
3
+ "version": "0.0.10",
4
4
  "description": "A CLI tool for analyzing JavaScript/TypeScript imports from libraries",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/tvshevchuk/Importy"
8
+ },
5
9
  "type": "module",
6
10
  "main": "./dist/index.js",
7
11
  "bin": {
8
12
  "inspect-imports": "./dist/index.js"
9
13
  },
10
- "keywords": [],
11
14
  "author": "Taras Shevchuk",
12
15
  "license": "MIT",
13
16
  "publishConfig": {
@@ -17,28 +20,67 @@
17
20
  "dist"
18
21
  ],
19
22
  "devDependencies": {
20
- "@babel/types": "^7.27.3",
21
- "@types/babel__traverse": "^7.20.7",
22
- "@types/node": "^22.15.29",
23
- "@typescript-eslint/eslint-plugin": "^7.4.0",
24
- "@typescript-eslint/parser": "^7.4.0",
25
- "eslint": "^8.57.0",
26
- "ts-node": "^10.9.2",
27
- "tsup": "^8.5.0",
28
- "typescript": "^5.8.3",
29
- "vitest": "^1.4.0"
23
+ "@babel/types": "7.27.3",
24
+ "@types/babel__traverse": "7.20.7",
25
+ "@types/node": "22.15.29",
26
+ "ts-node": "10.9.2",
27
+ "tsup": "8.5.0",
28
+ "typescript": "5.8.3",
29
+ "vitest": "1.4.0"
30
30
  },
31
31
  "dependencies": {
32
- "@babel/parser": "^7.27.5",
33
- "@babel/traverse": "^7.27.4",
34
- "commander": "^14.0.0"
32
+ "@babel/parser": "7.27.5",
33
+ "@babel/traverse": "7.27.4",
34
+ "commander": "14.0.0"
35
35
  },
36
+ "keywords": [
37
+ "cli",
38
+ "import",
39
+ "imports",
40
+ "analyze",
41
+ "analysis",
42
+ "javascript",
43
+ "typescript",
44
+ "jsx",
45
+ "tsx",
46
+ "library",
47
+ "dependencies",
48
+ "dependency",
49
+ "scanner",
50
+ "ast",
51
+ "babel",
52
+ "codebase",
53
+ "tool",
54
+ "static-analysis",
55
+ "code-analysis",
56
+ "module",
57
+ "modules",
58
+ "es6",
59
+ "esm",
60
+ "commonjs",
61
+ "react",
62
+ "vue",
63
+ "angular",
64
+ "component",
65
+ "components",
66
+ "usage",
67
+ "report",
68
+ "audit",
69
+ "bundle",
70
+ "bundler",
71
+ "webpack",
72
+ "vite",
73
+ "rollup",
74
+ "tree-shaking",
75
+ "dead-code",
76
+ "refactor",
77
+ "migration"
78
+ ],
36
79
  "scripts": {
37
80
  "build": "tsup src/index.ts",
38
81
  "start": "node dist/index.js",
39
82
  "dev": "ts-node src/index.ts",
40
83
  "test": "vitest run",
41
- "test:watch": "vitest",
42
- "lint": "eslint src/**/*.ts"
84
+ "test:watch": "vitest"
43
85
  }
44
86
  }