-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "quick-deployer-sdk",
"version": "1.0.0",
"description": "A TypeScript SDK for the QuickDeployer API, supporting frontend and backend applications.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist",
"README.md",
"LICENSE"
],
"author": {
"role": "developer",
"name": "Nirav Sutariya",
"email": "sutariya_nirav@yahoo.com",
"homepage": "https://www.niravsutariya.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/niravsutariya/node-quick-deployer-sdk.git"
},
"homepage": "https://github.com/niravsutariya/node-quick-deployer-sdk#readme",
"keywords": [
"quickdeployer",
"sdk",
"typescript",
"api",
"frontend",
"backend"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.3.1",
"ts-jest": "^29.1.5",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"node-fetch": "^3.3.2",
"zod": "^3.24.4"
}
}