-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 1.78 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "pure-index",
"type": "module",
"version": "1.1.0",
"description": "Pure Index is a tool for packages. It helps to clean your packages of unused exports with ease.",
"main": "./dist/api/index.js",
"types": "./dist/api/index.d.ts",
"bin": "./dist/bin/index.js",
"author": "Viktor Pasynok",
"license": "MIT",
"files": ["dist", "README.md", "CHANGELOG.md"],
"private": false,
"scripts": {
"build": "make build",
"prepublishOnly": "make prepublishOnly",
"test": "vitest"
},
"dependencies": {
"@swc/core": "1.6.3",
"fdir": "6.1.1",
"lilconfig": "3.1.2",
"meow": "13.2.0",
"nanospinner": "1.1.0",
"picomatch": "3.0.1"
},
"engines": {
"node": ">= 16"
},
"devDependencies": {
"@types/node": "20.14.7",
"effector": "23.2.2",
"prettier": "3.3.2",
"tsup": "8.1.0",
"typescript": "5.5",
"vite-tsconfig-paths": "4.3.2",
"vitest": "1.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/space307/pure-index.git"
},
"bugs": {
"url": "https://github.com/space307/pure-index/issues"
},
"homepage": "https://github.com/space307/pure-index#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"analysis",
"analyze",
"cli",
"dead code",
"dependencies",
"detect",
"duplicate",
"entropy",
"export",
"import",
"index",
"files",
"find",
"javascript",
"lint",
"maintenance",
"members",
"missing",
"monorepo",
"namespace",
"package",
"scan",
"types",
"typescript",
"unreferenced",
"unresolved",
"usage",
"unused",
"workspace",
"ease",
"framework agnostic"
],
"volta": {
"node": "20.11.0",
"npm": "10.3.0"
}
}