ghostimport 0.1.3 → 0.1.4
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/package.json +68 -68
package/package.json
CHANGED
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "ghostimport",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Detects ghost imports in your code - imports that don't exist, hallucinated by AI coding tools.",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"npm",
|
|
7
|
-
"ai",
|
|
8
|
-
"hallucination",
|
|
9
|
-
"vibe-coding",
|
|
10
|
-
"cursor",
|
|
11
|
-
"claude",
|
|
12
|
-
"imports",
|
|
13
|
-
"security",
|
|
14
|
-
"lint",
|
|
15
|
-
"ghost",
|
|
16
|
-
"import-validation",
|
|
17
|
-
"ai-safety",
|
|
18
|
-
"supply-chain",
|
|
19
|
-
"hallucination-detection",
|
|
20
|
-
"copilot",
|
|
21
|
-
"pre-commit"
|
|
22
|
-
],
|
|
23
|
-
"homepage": "https://github.com/FGuerreir0/ghostimport#readme",
|
|
24
|
-
"bugs": {
|
|
25
|
-
"url": "https://github.com/FGuerreir0/ghostimport/issues"
|
|
26
|
-
},
|
|
27
|
-
"repository": {
|
|
28
|
-
"type": "git",
|
|
29
|
-
"url": "git+https://github.com/FGuerreir0/ghostimport.git"
|
|
30
|
-
},
|
|
31
|
-
"license": "MIT",
|
|
32
|
-
"author": "Fábio Guerreiro",
|
|
33
|
-
"type": "module",
|
|
34
|
-
"main": "./dist/index.js",
|
|
35
|
-
"types": "./dist/index.d.ts",
|
|
36
|
-
"sideEffects": false,
|
|
37
|
-
"exports": {
|
|
38
|
-
".": {
|
|
39
|
-
"types": "./dist/index.d.ts",
|
|
40
|
-
"import": "./dist/index.js",
|
|
41
|
-
"require": "./dist/index.cjs"
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
"bin": {
|
|
45
|
-
"ghostimport": "dist/cli.js"
|
|
46
|
-
},
|
|
47
|
-
"files": [
|
|
48
|
-
"dist"
|
|
49
|
-
],
|
|
50
|
-
"engines": {
|
|
51
|
-
"node": ">=22"
|
|
52
|
-
},
|
|
53
|
-
"scripts": {
|
|
54
|
-
"build": "node build.js",
|
|
55
|
-
"typecheck": "tsc",
|
|
56
|
-
"clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
|
|
57
|
-
"test": "tsx tests/test.ts",
|
|
58
|
-
"dev": "tsx src/cli.ts",
|
|
59
|
-
"prepare": "git config core.hooksPath .githooks",
|
|
60
|
-
"prepublishOnly": "npm run build"
|
|
61
|
-
},
|
|
62
|
-
"devDependencies": {
|
|
63
|
-
"@types/node": "^20.19.39",
|
|
64
|
-
"esbuild": "^0.25.0",
|
|
65
|
-
"tsx": "^4.21.0",
|
|
66
|
-
"typescript": "^5.9.3"
|
|
67
|
-
}
|
|
68
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "ghostimport",
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "Detects ghost imports in your code - imports that don't exist, hallucinated by AI coding tools.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"npm",
|
|
7
|
+
"ai",
|
|
8
|
+
"hallucination",
|
|
9
|
+
"vibe-coding",
|
|
10
|
+
"cursor",
|
|
11
|
+
"claude",
|
|
12
|
+
"imports",
|
|
13
|
+
"security",
|
|
14
|
+
"lint",
|
|
15
|
+
"ghost",
|
|
16
|
+
"import-validation",
|
|
17
|
+
"ai-safety",
|
|
18
|
+
"supply-chain",
|
|
19
|
+
"hallucination-detection",
|
|
20
|
+
"copilot",
|
|
21
|
+
"pre-commit"
|
|
22
|
+
],
|
|
23
|
+
"homepage": "https://github.com/FGuerreir0/ghostimport#readme",
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/FGuerreir0/ghostimport/issues"
|
|
26
|
+
},
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/FGuerreir0/ghostimport.git"
|
|
30
|
+
},
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"author": "Fábio Guerreiro",
|
|
33
|
+
"type": "module",
|
|
34
|
+
"main": "./dist/index.js",
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"sideEffects": false,
|
|
37
|
+
"exports": {
|
|
38
|
+
".": {
|
|
39
|
+
"types": "./dist/index.d.ts",
|
|
40
|
+
"import": "./dist/index.js",
|
|
41
|
+
"require": "./dist/index.cjs"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"bin": {
|
|
45
|
+
"ghostimport": "dist/cli.js"
|
|
46
|
+
},
|
|
47
|
+
"files": [
|
|
48
|
+
"dist"
|
|
49
|
+
],
|
|
50
|
+
"engines": {
|
|
51
|
+
"node": ">=22"
|
|
52
|
+
},
|
|
53
|
+
"scripts": {
|
|
54
|
+
"build": "node build.js",
|
|
55
|
+
"typecheck": "tsc",
|
|
56
|
+
"clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
|
|
57
|
+
"test": "tsx tests/test.ts",
|
|
58
|
+
"dev": "tsx src/cli.ts",
|
|
59
|
+
"prepare": "git config core.hooksPath .githooks",
|
|
60
|
+
"prepublishOnly": "npm run build"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@types/node": "^20.19.39",
|
|
64
|
+
"esbuild": "^0.25.0",
|
|
65
|
+
"tsx": "^4.21.0",
|
|
66
|
+
"typescript": "^5.9.3"
|
|
67
|
+
}
|
|
68
|
+
}
|