-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.96 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.96 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
{
"name": "coze-plugin-curl-filter",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 25521 --host",
"build": "tsc -b && vite build",
"build:analyze": "npm run build && npx vite-bundle-analyzer dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist node_modules/.vite",
"prepare": "npm run type-check && npm run lint && npm run test:run"
},
"keywords": [
"curl",
"filter",
"http",
"developer-tools",
"web-development",
"api-testing",
"request-cleaning",
"browser-tools",
"react",
"typescript"
],
"author": {
"name": "JSREI Team",
"url": "https://github.com/JSREI"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/JSREI/curl-filter.git"
},
"bugs": {
"url": "https://github.com/JSREI/curl-filter/issues"
},
"homepage": "https://jsrei.github.io/curl-filter/",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.2",
"@mui/material": "^7.3.2",
"i18next": "^25.5.2",
"i18next-browser-languagedetector": "^8.2.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-i18next": "^15.7.3"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"jsdom": "^26.1.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.1",
"vite": "^7.1.2",
"vitest": "^3.2.4"
}
}