-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.13 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.13 KB
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
{
"name": "@ghosttypes/ff-api",
"version": "1.3.0",
"description": "FlashForge 3D Printer API for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "pnpm build",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"docs:check": "go run scripts/check-fileoverview.go",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"ci": "biome ci ."
},
"keywords": [
"flashforge",
"3d-printer",
"api"
],
"author": "GhostTypes",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@types/axios": "^0.9.36",
"@types/node": "^22.14.0",
"@vitest/coverage-v8": "^4.0.18",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^4.0.18"
},
"dependencies": {
"axios": "^1.8.4",
"form-data": "^4.0.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GhostTypes/ff-5mp-api-ts.git"
}
}