-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "localized-strings",
"version": "2.0.3",
"description": "Simple module to localize the strings of any JS based program using the same syntax used in the ReactLocalization and ReactNativeLocalization module, use 'npm run build' before publishing",
"type": "module",
"main": "./lib/LocalizedStrings.umd.js",
"module": "./lib/LocalizedStrings.es.js",
"types": "./lib/LocalizedStrings.d.ts",
"exports": {
".": {
"types": "./lib/LocalizedStrings.d.ts",
"import": "./lib/LocalizedStrings.es.js",
"require": "./lib/LocalizedStrings.umd.js"
}
},
"files": [
"lib"
],
"scripts": {
"dev": "vite",
"lint": "eslint 'src/**/*.{js,ts}'",
"test": "vitest",
"build:vite": "vite build",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run build:vite && npm run build:types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stefalda/localized-strings.git"
},
"keywords": [
"localization",
"internationalization",
"string localization",
"javascript",
"typescript",
"nativescript"
],
"author": "Stefano Falda <[email protected]> (http://www.babisoft.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stefalda/localized-strings/issues"
},
"homepage": "https://github.com/stefalda/localized-strings#readme",
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vitest": "^2.1.8",
"@types/node": "^22.10.5"
}
}