-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.46 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
57
58
{
"name": "multilanguagejs",
"version": "2.0.1",
"description": "A simple, zero-dependency i18n library for static websites.",
"type": "module",
"main": "dist/multilanguagejs.umd.cjs",
"module": "dist/multilanguagejs.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/multilanguagejs.es.js",
"require": "./dist/multilanguagejs.umd.cjs"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "vite build && tsc --emitDeclarationOnly",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianwelerson/multilanguagejs.git"
},
"keywords": [
"i18n",
"internationalization",
"multilanguage",
"translation",
"static-site",
"javascript",
"typescript"
],
"author": "Ian Welerson",
"license": "MIT",
"bugs": {
"url": "https://github.com/ianwelerson/multilanguagejs/issues"
},
"homepage": "https://github.com/ianwelerson/multilanguagejs#readme",
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"eslint": "^9.0.0",
"jsdom": "^25.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0",
"vite": "^6.0.0",
"vitest": "^3.0.0"
}
}