-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.79 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": "tspace-nfs",
"version": "1.1.9-beta.9",
"description": "tspace-nfs is a Network File System (NFS) and provides both server and client capabilities for accessing files over a network.",
"main": "./build/lib/index.js",
"types": "./build/lib/index.d.ts",
"files": [
"build"
],
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/thanathip41/tspace-nfs.git"
},
"keywords": [
"tspace",
"tspace-nfs",
"nfs",
"network file system"
],
"author": "Thanathip (https://github.com/thanathip41)",
"license": "MIT",
"bugs": {
"url": "https://github.com/thanathip41/tspace-nfs"
},
"homepage": "https://github.com/thanathip41",
"scripts": {
"build": "tsc && copyfiles -u 3 src/lib/server/studio/**/*.html build/lib/server",
"prepare": "npm run build",
"beta": "npm run build && npm publish --tag beta",
"release": "npm run build && npm publish",
"client": "ts-node test/client.ts",
"server": "ts-node test/server.ts",
"test": "ts-node src/tests/client.test.ts"
},
"dependencies": {
"archiver": "^7.0.1",
"axios": "1.7.2",
"bcrypt": "5.1.1",
"fs-extra": "11.2.0",
"html-minifier-terser": "7.2.0",
"jsonwebtoken": "9.0.2",
"node-cron": "^3.0.3",
"tspace-spear": "1.1.6",
"tspace-utils": "1.0.4",
"xml": "1.0.1"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/bcrypt": "^5.0.2",
"@types/express": "^5.0.0",
"@types/express-fileupload": "^1.5.1",
"@types/fs-extra": "^11.0.4",
"@types/html-minifier-terser": "^7.0.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/node-cron": "^3.0.11",
"@types/xml": "^1.0.11",
"copyfiles": "^2.4.1",
"express": "^4.21.1",
"express-fileupload": "^1.5.1",
"terser": "^5.34.1"
}
}