-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.59 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "i4n",
"version": "0.5.1",
"description": "Lightweight, Zero dependencies, Typesafe and Simple to use translations for TypeScript.",
"private": false,
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"homepage": "https://github.com/m10rten/i4n#readme",
"repository": {
"type": "git",
"url": "https://github.com/m10rten/i4n.git"
},
"bugs": {
"url": "https://github.com/m10rten/i4n/issues"
},
"readme": "",
"scripts": {
"build": "tsup --format esm,cjs --dts",
"lint": "eslint src/**/*.ts",
"test": "jest",
"typecheck": "tsc --noEmit",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --passWithNoTests",
"prettier:check": "prettier --check .",
"format": "prettier --write .",
"generate": "echo 'Not implemented yet.'",
"precheck": "pnpm typecheck && pnpm lint",
"verify": "pnpm build && pnpm test",
"release": "changeset publish",
"change": "changeset",
"prepare": "husky"
},
"type": "commonjs",
"keywords": [
"translations",
"lightweight",
"typescript",
"i4n",
"internationalisation",
"translate",
"simple-to-use"
],
"author": "m10rten",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "2.27.7",
"@eslint/js": "9.9.0",
"@ianvs/prettier-plugin-sort-imports": "4.3.1",
"@types/eslint__js": "8.42.3",
"@types/jest": "29.5.12",
"@types/node": "22.3.0",
"eslint": "9.9.0",
"husky": "9.1.4",
"jest": "29.7.0",
"ts-jest": "29.2.4",
"ts-node": "10.9.2",
"tsup": "8.2.4",
"tsx": "4.17.0",
"typescript": "5.5.4",
"typescript-eslint": "8.1.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./i4n": {
"types": "./dist/i4n.d.ts",
"require": "./dist/i4n.js",
"import": "./dist/i4n.mjs"
},
"./errors": {
"types": "./dist/errors.d.ts",
"require": "./dist/errors.js",
"import": "./dist/errors.mjs"
},
"./types": {
"types": "./dist/types.d.ts",
"require": "./dist/types.js",
"import": "./dist/types.mjs"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"i4n": [
"dist/i4n.d.ts"
],
"errors": [
"dist/errors.d.ts"
],
"types": [
"dist/types.d.ts"
]
}
},
"files": [
"dist",
"package.json",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.11.x < 22.x"
}
}