-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.24 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": "@caiquecamargo/vite-plugin-i18n",
"version": "0.0.8",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.js",
"type": "module",
"exports": {
".": {
"default": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/caiquecamargo/vite-plugin-i18n.git"
},
"scripts": {
"dev": "tsup --watch --onSuccess 'node dist/demo.js'",
"build": "tsup",
"package": "pnpm build",
"prepublishOnly": "pnpm package",
"pub": "pnpm publish",
"serve": "vite preview --host 0.0.0.0",
"test": "vitest run",
"test:coverage": "vitest --coverage",
"test:watch": "vitest watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@caiquecamargo/utils": "^0.1.5",
"@google-cloud/translate": "^8.0.2",
"consola": "^3.2.3",
"ohash": "^1.1.3",
"dotenv": "^16.3.1"
},
"devDependencies": {
"happy-dom": "^12.10.3",
"tsup": "^8.0.2",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6"
}
}