-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.2 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.2 KB
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
{
"name": "prune-mod",
"version": "0.1.1",
"description": "Prune and extract TypeScript modules with their dependencies into standalone packages",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"bin": {
"prune-mod": "dist/command/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/command/cli.js",
"dev": "ts-node src/command/cli.ts",
"prepare": "npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": ["typescript", "module", "extractor", "dependency", "cli", "prune", "tree-shaking"],
"author": "Ahmed Rowaihi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ahmedrowaihi/prune-mod.git"
},
"bugs": {
"url": "https://github.com/ahmedrowaihi/prune-mod/issues"
},
"homepage": "https://github.com/ahmedrowaihi/prune-mod#readme",
"dependencies": {
"@clack/prompts": "^0.10.0",
"commander": "^12.0.0",
"fs-extra": "^11.3.0",
"jsonc-parser": "^3.3.1",
"picocolors": "^1.1.1",
"ts-morph": "^25.0.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.5.0",
"typescript": "^5.0.0"
}
}