-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "oc-template-vue",
"version": "0.1.0",
"description": "oc-template-vue",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"repository": {
"type": "git",
"url": "https://github.com/opencomponents/vite-templates.git"
},
"bugs": {
"url": "https://github.com/opencomponents/vite-templates/issues"
},
"homepage": "https://github.com/opencomponents/vite-templates#readme",
"keywords": [
"oc",
"opencomponents",
"vue",
"oc-template"
],
"author": {
"name": "Ricardo Devis Agullo",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"minimal-request": "3.0.0",
"nice-cache": "0.0.5",
"oc-generic-template-renderer": "2.0.9"
},
"files": [
"dist/**"
],
"externals": {
"vue": {
"global": "Vue",
"url": "https://unpkg.com/[email protected]/dist/vue.global.prod.js",
"devUrl": "https://unpkg.com/[email protected]/dist/vue.global.js"
}
}
}