-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.3 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
{
"name": "apimoq-cli",
"version": "0.1.2",
"description": "A lightweight, persistent local API simulator for frontend development.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Ohryzon/apimoq-cli.git"
},
"homepage": "https://github.com/Ohryzon/apimoq-cli#readme",
"bugs": {
"url": "https://github.com/Ohryzon/apimoq-cli/issues"
},
"keywords": [
"api",
"mock",
"mock-server",
"frontend",
"cli",
"development"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": {
"apimoq": "./dist/cli/index.js"
},
"files": [
"dist",
"templates"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc -p tsconfig.json",
"dev": "tsx src/cli/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"check": "npm run build && npm test",
"audit:ci": "npm audit --audit-level=high",
"pack:ci": "npm pack --dry-run",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@faker-js/faker": "^10.6.0",
"commander": "^12.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"rimraf": "^6.0.1",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^5.0.0"
}
}