-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
67 lines (67 loc) · 1.15 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
{
"name": "trash",
"version": "9.0.0",
"description": "Move files and folders to the trash",
"license": "MIT",
"repository": "sindresorhus/trash",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"test": "xo && ava --timeout=20m && tsd"
},
"files": [
"index.js",
"index.d.ts",
"lib"
],
"keywords": [
"trash",
"recycle",
"bin",
"rm",
"rmrf",
"rimraf",
"remove",
"delete",
"del",
"file",
"files",
"directory",
"directories",
"folder",
"folders",
"xdg"
],
"dependencies": {
"@sindresorhus/chunkify": "^1.0.0",
"@stroncium/procfs": "^1.2.1",
"globby": "^7.1.1",
"is-path-inside": "^4.0.0",
"move-file": "^3.1.0",
"p-map": "^7.0.2",
"xdg-trashdir": "^3.1.0"
},
"devDependencies": {
"ava": "^6.1.3",
"tempfile": "^5.0.0",
"tsd": "^0.31.1",
"typescript": "^5.5.4",
"xo": "^0.59.2"
},
"ava": {
"workerThreads": false
}
}