-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "scan-imports",
"description": "Node.js package designed to extract and analyze import statements from TypeScript and TypeScript JSX files. It provides a simple and efficient way to scan your codebase for import declarations, making it useful for various code analysis and refactoring tasks.",
"publishConfig": {
"access": "public"
},
"version": "v1.1.1",
"type": "module",
"author": {
"name": "Amin Roslan",
"url": "https://qwerqy.com"
},
"keywords": [
"javascript",
"typescript",
"cli",
"imports",
"nodejs"
],
"repository": {
"type": "git",
"url": "https://github.com/qwerqy/import-scanner.git"
},
"main": "./dist/index.js",
"bin": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"license": "MIT",
"scripts": {
"build": "tsup",
"start": "node dist/index.js",
"dev": "tsup --watch",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^20.5.6",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"chalk": "4.1.2",
"commander": "^11.0.0",
"es-module-lexer": "^1.3.0",
"ts-morph": "^19.0.0"
}
}