-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.97 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
{
"name": "universal-fs",
"version": "1.3.4",
"description": "Allows a client or server to access the file system in the current codebase or a different one.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "npx rollup -cw & npx dts-bundle-generator src/index.ts --out-file dist/index.d.ts --no-check & nodemon dist/index.js",
"build": "npx rollup -c & npx dts-bundle-generator src/index.ts --out-file dist/index.d.ts --no-check",
"prepare": "husky install",
"lint:check": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"format:check": "npx prettier .",
"format:fix": "npx prettier --write",
"prepublish": "npm build"
},
"lint-staged": {
"*.{js,ts,tsx,astro,mjs,cjs,spec.ts,spec.tsx}": "eslint --cache --fix",
"*.{js,css,md,ts,tsx,astro,mjs,cjs}": "prettier --write",
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eTech-Source/universal-fs.git"
},
"keywords": [
"node-fs",
"fs"
],
"author": "eTech",
"license": "MIT",
"bugs": {
"url": "https://github.com/eTech-Source/universal-fs/issues"
},
"homepage": "https://github.com/eTech-Source/universal-fs#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/node": "^20.14.10",
"@types/xmlhttprequest": "^1.8.2",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.5.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.6.3",
"typedoc": "^0.26.2",
"typescript": "^5.5.2"
},
"dependencies": {
"@ngrok/ngrok": "^1.3.0",
"bcrypt": "^5.1.1",
"browser-or-node": "^3.0.0",
"buffer": "^6.0.3",
"dotenv": "^16.4.5",
"express": "^4.19.2"
}
}