generated from rehhouari/alpine-typescript-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·39 lines (39 loc) · 990 Bytes
/
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
{
"name": "alpinejs-i18n",
"description": "Internationalization (i18n) support for Alpine.js",
"license": "MIT",
"author": "Rafik El Hadi Houari",
"version": "2.5.2",
"repository": {
"type": "git",
"url": "https://github.com/rehhouari/alpinejs-i18n"
},
"keywords": [
"alpinejs",
"i18n",
"internationalization",
"internationalisation",
"translation",
"translate",
"localization",
"localisation",
"alpine",
"alpine.js",
"Alpine JS",
"Alpine JS Plugin",
"Alpine JS Plugins"
],
"source": "src/index.ts",
"main": "dist/cdn.min.js",
"module": "dist/module.esm.min.js",
"types": "dist/index.d.ts",
"devDependencies": {
"brotli-size": "^4.0.0",
"esbuild": "^0.8.39",
"typescript": "^5.7.2"
},
"scripts": {
"build": "node ./scripts/build.js && tsc --emitDeclarationOnly --declaration --project tsconfig.json",
"watch": "node ./scripts/build.js --watch && tsc --emitDeclarationOnly --declaration --project tsconfig.json"
}
}