-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.2 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.2 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "pocket-mocker",
"description": "Visual in-browser HTTP mocking tool for modern frontend development",
"private": false,
"version": "1.2.5",
"type": "module",
"keywords": [
"mock",
"api",
"http",
"intercept",
"development",
"debug",
"frontend",
"testing",
"postman",
"openapi"
],
"author": "tianchang",
"license": "MIT",
"homepage": "https://github.com/tianchangNorth/pocket-mock#readme",
"repository": {
"type": "git",
"url": "https://github.com/tianchangNorth/pocket-mock.git"
},
"bugs": {
"url": "https://github.com/tianchangNorth/pocket-mock/issues"
},
"files": [
"dist",
"plugin"
],
"main": "./dist/pocket-mock.umd.js",
"module": "./dist/pocket-mock.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/pocket-mock.es.js",
"require": "./dist/pocket-mock.umd.js"
},
"./vite-plugin": {
"types": "./plugin/vite-plugin-pocket-mock.d.ts",
"import": "./plugin/vite-plugin-pocket-mock.js",
"require": "./plugin/vite-plugin-pocket-mock.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json",
"test": "vitest",
"build:demo": "vite build -c vite.demo.config.ts",
"deploy:demo": "npm run build:demo && gh-pages -d demo-dist"
},
"devDependencies": {
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@octokit/rest": "^22.0.1",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@tsconfig/svelte": "^5.0.6",
"@types/node": "^24.10.1",
"codemirror": "^6.0.2",
"dotenv": "^17.2.3",
"esbuild": "^0.25.12",
"gh-pages": "^6.3.0",
"svelte": "^4.2.12",
"svelte-check": "^4.3.4",
"typescript": "~5.9.3",
"vite": "npm:rolldown-vite@7.2.5",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.14"
},
"overrides": {
"vite": "npm:rolldown-vite@7.2.5"
},
"dependencies": {
"@faker-js/faker": "^10.1.0",
"axios": "^1.13.2",
"unique-username-generator": "^1.5.1"
}
}