-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.21 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
70
71
72
73
74
75
76
77
{
"name": "@planetadeleste/vue-mc-orders",
"version": "2.1.1",
"description": "Vue models and collections for API Orders Shopaholic plugin for Vue 3",
"main": "dist/vue-mc-orders.cjs.js",
"module": "dist/vue-mc-orders.esm.js",
"types": "src/index.d.ts",
"author": "Alvaro Canepa",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@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.191",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"@wwa/rollup-plugin-terser": "^1.0.1",
"axios": "^1.3.3",
"cross-env": "^7.0.3",
"directory-tree": "^3.4.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"generate-template-files": "^3.2.1",
"insert-line": "^1.1.0",
"install-peers-cli": "^2.2.0",
"lodash": "^4.17.21",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"rollup": "^3.7.5",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-terser": "^7.0.2",
"ts-loader": "^9.4.2",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vue": "^3.2.45",
"vuex-module-decorators": "^2.0.0"
},
"scripts": {
"lint": "eslint --fix 'src/**/*.ts'",
"build": "rimraf dist && rollup -c --environment BUILD:production --bundleConfigAsCjs",
"install-peers": "install-peers -f"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planetadeleste/vue-mc-orders.git"
},
"bugs": {
"url": "https://github.com/planetadeleste/vue-mc-orders/issues"
},
"homepage": "https://github.com/planetadeleste/vue-mc-orders#readme",
"files": [
"dist",
"src/index.d.ts",
"src/types"
],
"keywords": [
"vuemc",
"vue",
"mc",
"shopaholic",
"orders"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"@planetadeleste/vue-mc": "^2.0.1",
"@planetadeleste/vuemc": "^1.0.11"
}
}