-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.21 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.21 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
{
"name": "@helpwave/internationalization",
"description": "helpwave's internationalization library",
"publishConfig": {
"access": "public"
},
"author": "helpwave <support@helpwave.de> (https://helpwave.de)",
"homepage": "https://helpwave.de",
"repository": {
"url": "git+https://github.com/helpwave/internationlization.git"
},
"license": "MPL-2.0",
"version": "0.4.0",
"type": "module",
"files": [
"dist"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"build-intl": "dist/scripts/compile-arb.js"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsup",
"lint": "eslint .",
"test": "jest"
},
"devDependencies": {
"@helpwave/eslint-config": "0.0.7",
"@types/jest": "^30.0.0",
"eslint": "9.31.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"tsup": "8.5.0",
"typescript": "5.7.2",
"webpack": "5.97.1"
},
"keywords": [
"internationalization",
"compiler",
"typscript",
"typesafe",
"ARB"
],
"bugs": {
"url": "https://github.com/helpwave/hightide/issues"
}
}