-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 965 Bytes
/
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
{
"name": "filic",
"version": "3.6.5",
"description": "An Advance File System API",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.js",
"keywords": [
"File System",
"fs",
"Advance",
"File",
"Directory"
],
"scripts": {
"typecheck": "tsc",
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist node_modules",
"prepare": "npm run build",
"test": "tsx test/index.ts",
"test:watch": "tsx watch test/index.ts"
},
"engines": {
"node": ">=14.16"
},
"license": "ISC",
"type": "module",
"devDependencies": {
"@types/node": "^18.15.3",
"nodemon": "^2.0.21",
"tsup": "^6.6.3",
"tsx": "^3.12.6",
"type-fest": "^3.6.1",
"typescript": "^4.9.5"
},
"homepage": "https://github.com/henil0604/filic#readme",
"author": "Henil Malaviya <henilmalaviya06@gmail.com>",
"dependencies": {
"cryptr": "^6.2.0",
"execa": "^7.1.1"
}
}