-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "@eartharoid/i18n",
"version": "2.0.0-alpha.6",
"description": "⚡ A super fast, small, and simple message localisation library",
"type": "module",
"types": "types/index.d.ts",
"exports": {
".": "./dist/index.js",
"./client": "./dist/client/index.js",
"./core": "./dist/client/index.js",
"./formatters": "./dist/formatters/index.js",
"./i18nb": "./dist/i18nb/index.js"
},
"files": [
"dist/",
"types/"
],
"bin": "./dist/bin/cli",
"scripts": {
"build": "tsc",
"build-and-test": "npm run build && npm run test",
"lint": "eslint src --ext .ts",
"lint-and-fix": "eslint src --ext .ts --fix",
"test": "ava ./test/*",
"watch:test": "ava ./test/* --watch",
"prepack": "rimraf dist && rimraf types && pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eartharoid/i18n.git"
},
"keywords": [
"fast",
"internationalisation",
"internationalization",
"i18n"
],
"author": "eartharoid",
"license": "MIT",
"bugs": {
"url": "https://github.com/eartharoid/i18n/issues"
},
"homepage": "https://github.com/eartharoid/i18n#readme",
"devDependencies": {
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"ava": "^5.3.1",
"eslint": "^7.32.0",
"rimraf": "^5.0.7",
"typescript": "^4.9.5"
}
}