-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.8 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
{
"name": "@worldware/msg-react",
"version": "1.1.0",
"description": "React components for rendering messages from @worldware/msg",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"test": "vitest --run",
"test:watch": "vitest",
"coverage": "vitest --coverage",
"build": "tsup && tsc -p tsconfig.build.json",
"prepack": "npm run build"
},
"keywords": [
"i18n",
"l10n",
"react",
"messageformat",
"msg"
],
"author": "Joel Sahleen",
"license": "ISC",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/worldware-studios/msg-react.git"
},
"bugs": {
"url": "https://github.com/worldware-studios/msg-react/issues"
},
"homepage": "https://github.com/worldware-studios/msg-react#readme",
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"peerDependencies": {
"@worldware/msg": "^0.12.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.0.5",
"@vitest/coverage-v8": "^4.1.10",
"@worldware/msg": "^0.12.0",
"jsdom": "^30.0.1",
"messageformat": "^4.0.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"semantic-release": "^25.0.9",
"tsup": "^8.5.1",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}