-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.81 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@planetadeleste/vue-mc",
"version": "2.0.1",
"description": "Extension of vue-mc package for Vue 3",
"repository": {
"type": "git",
"url": "git+https://github.com/planetadeleste/vue-mc.git"
},
"bugs": {
"url": "https://github.com/planetadeleste/vue-mc/issues"
},
"author": "Alvaro Canepa",
"license": "MIT",
"main": "dist/vue-mc.js",
"module": "dist/vue-mc.es.js",
"types": "src/vue-mc.d.ts",
"scripts": {
"lint": "eslint --fix 'src/**/*.ts'",
"build": "rollup -c --bundleConfigAsCjs",
"install-peers": "install-peers -f"
},
"dependencies": {
"object-to-formdata": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@planetadeleste/vuemc": "^1.0.11",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^23.0.5",
"@rollup/plugin-json": "^5.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/lodash": "^4.14.168",
"@types/node": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"axios": "^1.2.1",
"eslint": "^8.30.0",
"eslint-plugin-prettier": "^4.2.1",
"install-peers-cli": "^2.2.0",
"lodash": "^4.17.21",
"rollup": "^3.7.5",
"rollup-plugin-clear": "^2.0.7",
"ts-loader": "^8.0.2",
"tslib": "^2.3.1",
"typescript": "^4.2.4",
"vue": "^3.2.33",
"vuex-module-decorators": "^1.0.1"
},
"files": [
"dist",
"src/vue-mc.d.ts"
],
"homepage": "https://www.npmjs.com/package/@planetadeleste/vue-mc",
"keywords": [
"vue",
"mc",
"vuemc",
"shopaholic"
],
"peerDependencies": {
"@planetadeleste/vuemc": "^1.0.11",
"axios": "^1.2.1"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}