-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "vue-plugin-kuzzle",
"version": "4.5.2",
"description": "A Vuejs plugin shipping the Kuzzle SDK in your components",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"test": "npm run test:lint && npm run test:types",
"test:lint": "eslint . --ext .ts",
"test:lint:fix": "npm run test:lint -- --fix",
"test:types": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuzzleio/vue-plugin-kuzzle.git"
},
"keywords": [
"kuzzle",
"vuejs",
"plugin"
],
"author": "Luca Marchesini <[email protected]>",
"license": "Apache 2",
"bugs": {
"url": "https://github.com/kuzzleio/vue-plugin-kuzzle/issues"
},
"homepage": "https://github.com/kuzzleio/vue-plugin-kuzzle#readme",
"peerDependencies": {
"kuzzle-sdk": "~7.x",
"typescript": ">= 5.1",
"vue": "2.7.*"
},
"dependencies": {
"kuzzle-sdk": "~7.x",
"vue": "2.7.*"
},
"devDependencies": {
"@types/node": "^16.10.1",
"eslint-plugin-kuzzle": "^0.0.8",
"typescript": "5.1.*"
},
"files": [
"dist"
]
}