-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1 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
{
"name": "@jota-one/i36n",
"version": "2.4.0",
"type": "module",
"description": "Translation manager twice simpler and twice better",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "index.d.ts",
"files": [
"dist/*",
"index.d.ts",
"src/index.vue2.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jota-one/i36n.git"
},
"keywords": [
"i18n",
"translate",
"vue"
],
"scripts": {
"build": "node build.cjs",
"test": "ava"
},
"author": "Juniors at Work",
"license": "MIT",
"bugs": {
"url": "https://github.com/jota-one/i36n/issues"
},
"dependencies": {
"@jota-one/replacer": "^0.4.0",
"snarkdown": "^2.0.0"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.10",
"vue": "^2.6.11 || >=3.0.5"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"ava": "^5.2.0",
"esbuild": "^0.17.11",
"vue": "^3.2.45"
}
}