-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.37 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "poof",
"version": "0.0.0-semantic-release",
"description": "Fast, non-blocking rm -rf alternative. Deletes files instantly while cleanup runs in the background.",
"keywords": [
"rm",
"rimraf",
"delete",
"remove",
"fast",
"cli"
],
"license": "MIT",
"repository": "privatenumber/poof",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"dist"
],
"type": "module",
"bin": "./dist/cli.mjs",
"exports": "./dist/index.mjs",
"imports": {
"#rm-worker": "./dist/spawn-rm/worker.mjs"
},
"packageManager": "pnpm@10.25.0+sha512.5e82639027af37cf832061bcc6d639c219634488e0f2baebe785028a793de7b525ffcd3f7ff574f5e9860654e098fe852ba8ac5dd5cefe1767d23a020a92f501",
"scripts": {
"build": "pkgroll --clean-dist",
"lint": "lintroll --cache --git",
"test": "pnpm --use-node-version=20.8.0 tsx tests/index.ts",
"type-check": "tsc",
"prepack": "pnpm build && clean-pkg-json",
"prepare": "skills-npm"
},
"engines": {
"node": ">=20.8.0"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/picomatch": "^4.0.2",
"clean-pkg-json": "^1.3.0",
"cleye": "^2.2.1",
"fs-fixture": "^2.7.0",
"lintroll": "^1.26.0",
"manten": "^2.0.0",
"nano-spawn": "^2.0.0",
"picomatch": "^4.0.3",
"pkgroll": "^2.21.4",
"pretty-bytes": "^7.1.0",
"skills-npm": "^1.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}