-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.5 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.5 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
{
"name": "lioness",
"version": "0.3.0-rc.0",
"description": "A React library for efficiently implementing Gettext localization",
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prettier": "prettier",
"lint": "eslint src tests",
"test": "vitest",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"example": "cd examples && webpack-dev-server --port 8111"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexanderwallin/lioness-react.git"
},
"keywords": [
"gettext",
"react",
"l10n",
"localization",
"localisation",
"translation"
],
"author": "Alexander Wallin <office@alexanderwallin.com> (http://alexanderwallin.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/alexanderwallin/lioness-react/issues"
},
"homepage": "https://github.com/alexanderwallin/lioness-react#readme",
"dependencies": {
"react": "^18.3.1"
},
"optionalDependencies": {
"node-gettext": "^3.0.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"@types/node-gettext": "^3.0.6",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/browser-playwright": "^4.0.16",
"node-gettext": "^3.0.0",
"prettier": "^3.7.4",
"react-dom": "^18.3.1",
"rimraf": "^2.5.2",
"typescript": "^5.9.3",
"vitest": "^4.0.16",
"vitest-browser-react": "^2.0.2"
}
}