importy 0.1.1 → 0.1.2
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/README.md +16 -1
- package/package.json +8 -4
package/README.md
CHANGED
|
@@ -6,7 +6,22 @@ A powerful CLI tool for analyzing JavaScript/TypeScript imports from libraries.
|
|
|
6
6
|
[](https://www.npmjs.com/package/importy)
|
|
7
7
|
[](https://opensource.org/licenses/MIT)
|
|
8
8
|
|
|
9
|
-
> **Version 0.1.
|
|
9
|
+
> **Version 0.1.1** - First stable release! 🎉 See [CHANGELOG.md](CHANGELOG.md) for details.
|
|
10
|
+
|
|
11
|
+
## 📖 Documentation
|
|
12
|
+
|
|
13
|
+
**[📚 Complete Documentation →](https://tvshevchuk.github.io/Importy/)**
|
|
14
|
+
|
|
15
|
+
- [🚀 Getting Started Guide](https://tvshevchuk.github.io/Importy/guide/getting-started)
|
|
16
|
+
- [📋 API Reference](https://tvshevchuk.github.io/Importy/api/cli)
|
|
17
|
+
- [💡 Examples & Use Cases](https://tvshevchuk.github.io/Importy/examples/basic-usage)
|
|
18
|
+
- [🤝 Contributing Guide](https://tvshevchuk.github.io/Importy/contributing)
|
|
19
|
+
|
|
20
|
+
## 🎬 Live Demo
|
|
21
|
+
|
|
22
|
+

|
|
23
|
+
|
|
24
|
+
*See Importy in action analyzing a React project! [View full demo →](DEMO.md)*
|
|
10
25
|
|
|
11
26
|
## Overview
|
|
12
27
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "importy",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "A CLI tool for analyzing JavaScript/TypeScript imports from libraries",
|
|
5
|
-
"homepage": "https://github.
|
|
5
|
+
"homepage": "https://tvshevchuk.github.io/Importy/",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/tvshevchuk/Importy/issues"
|
|
8
8
|
},
|
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
"ts-node": "10.9.2",
|
|
35
35
|
"tsup": "8.5.0",
|
|
36
36
|
"typescript": "5.8.3",
|
|
37
|
-
"
|
|
37
|
+
"vitepress": "^1.6.3",
|
|
38
|
+
"vitest": "1.6.1"
|
|
38
39
|
},
|
|
39
40
|
"dependencies": {
|
|
40
41
|
"@babel/parser": "7.27.5",
|
|
@@ -105,6 +106,9 @@
|
|
|
105
106
|
"release:major": "./scripts/release.sh major",
|
|
106
107
|
"release:check": "./scripts/release.sh --check",
|
|
107
108
|
"release:manual": "./scripts/release.sh --manual",
|
|
108
|
-
"prerelease": "npm run test && npm run check"
|
|
109
|
+
"prerelease": "npm run test && npm run check",
|
|
110
|
+
"docs:dev": "vitepress dev docs",
|
|
111
|
+
"docs:build": "vitepress build docs",
|
|
112
|
+
"docs:preview": "vitepress preview docs"
|
|
109
113
|
}
|
|
110
114
|
}
|