-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"name": "virtfusion",
"version": "0.6.0",
"description": "A client for VirtFusion API. Built with TypeScript.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"setup-dev": "git clone [email protected]:Lazco-Studio/VirtFusion-Test.git ../VirtFusion-Test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lazco-Studio/VirtFusion.git"
},
"keywords": [
"VirtFusion",
"api",
"typescript",
"async",
"promise"
],
"author": "Alex Liao, Lazco Studio LTD.",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Lazco-Studio/VirtFusion/issues"
},
"homepage": "https://github.com/Lazco-Studio/VirtFusion/wiki",
"packageManager": "[email protected]",
"dependencies": {
"@swc/core": "^1.10.1",
"lodash": "^4.17.21",
"tcp-ping": "^0.1.1",
"module-alias": "^2.2.3",
"typescript": "^5.7.2",
"axios": "^1.7.9",
"url-join-ts": "^1.0.5"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/lodash": "^4.17.13",
"@types/tcp-ping": "^0.1.6",
"@types/node": "^22.10.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"_moduleAliases": {
"types": "./dist/types",
"modules": "./dist/modules"
}
}