-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.48 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
{
"name": "vite-plugin-pug-i18n",
"version": "1.4.0",
"description": "Vite plugin to build static website with pug and i18n support",
"author": "Azat Ahmedov <[email protected]>",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && npm run build:esm && npm run build:commonjs",
"build:commonjs": "tsc -p tsconfig-cjs.json",
"build:esm": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/payalord/vite-plugin-pug-i18n.git"
},
"keywords": [
"vite",
"plugin",
"pug",
"jade",
"static",
"i18n",
"i18next",
"multipage"
],
"dependencies": {
"i18next": "^23.12.2",
"pug": "^3.0.3"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.2.0",
"@types/pug": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"eslint": "^9.9.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0",
"vite": "^5.4.0"
},
"license": "MIT"
}