-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 980 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
40
41
42
43
44
45
46
{
"name": "@blueshift/ng-interop",
"version": "0.0.6",
"description": "interoperability between Vue and angular.js",
"author": "Alexander Simonides",
"repository": {
"type": "git",
"url": "git+https://github.com/blueshift-labs/ng-interop.git"
},
"files": [
"lib",
"dist"
],
"module": "./dist/ng-interop.es.js",
"exports": {
".": {
"import": "./dist/ng-interop.es.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"build:pack": "vite build && npm pack"
},
"private": true,
"dependencies": {
"@vue/shared": "^3.0.7"
},
"devDependencies": {
"@uirouter/angularjs": "1.0.28",
"@vitejs/plugin-vue": "^1.1.5",
"@vue/compiler-sfc": "^3.0.7",
"angular": "^1.8.0",
"lodash": "^4.17.21",
"vite": "^2.0.5",
"vue": "^3.0.7"
},
"peerDependencies": {
"angular": "^1.8.0",
"vue": "^3.0.7"
},
"engines": {
"node": "^14.7.0"
}
}