-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.81 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.81 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
{
"type": "module",
"name": "@ciscode/ui-translate-kit",
"version": "1.0.0",
"description": "",
"main": "dist/index.umd.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js"
}
},
"scripts": {
"clean": "rm -rf dist coverage",
"build": "vite build && tsc",
"dev": "vite",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check .",
"format:write": "prettier --write .",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --watch --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"verify": "npm run lint && npm run typecheck && npm run test:cov",
"prepublishOnly": "npm run verify && npm run build",
"preview": "vite preview"
},
"author": "",
"license": "ISC",
"peerDependencies": {
"i18next": "^25.8.10",
"i18next-browser-languagedetector": "^8.2.1",
"react": ">=18.0.0 <20.0.0 || ^19.0.0",
"react-i18next": "^16.5.4"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"autoprefixer": "^10.4.24",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^28.1.0",
"msw": "^2.12.10",
"playwright": "^1.58.2",
"postcss": "^8.5.2",
"prettier": "^3.4.2",
"typescript": "^5.2.2",
"typescript-eslint": "^8.13.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}