-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.92 KB
/
package.json
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
{
"name": "@hyperse/translator",
"version": "1.2.2",
"description": "Translates messages from the given namespace by using the ICU syntax.",
"keywords": [
"hyperse",
"ICU",
"translator"
],
"repository": {
"type": "git",
"url": "[email protected]:hyperse-io/translator.git"
},
"main": "./dist/index.mjs",
"files": [
"./bin/",
"./dist/",
"./index.js"
],
"scripts": {
"build": "tsup",
"changeset": "changeset",
"cz": "cz",
"lint": "eslint .",
"lint-staged-files": "lint-staged --allow-empty",
"prepare": "husky",
"release": "yarn build && changeset publish",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --project ./tsconfig.json --noEmit"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"resolutions": {
"eslint-plugin-markdown": "5.1.0"
},
"dependencies": {
"@formatjs/fast-memoize": "^2.2.3",
"intl-messageformat": "^10.7.7"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.10",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@hyperse/eslint-config-hyperse": "^1.2.8",
"@hyperse/ts-node-paths": "^1.0.11",
"@types/node": "^22.10.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-istanbul": "^2.1.8",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"dotenv": "^16.4.7",
"eslint": "^9.16.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vitest": "^2.1.8"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}