-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.47 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "vuexr",
"version": "0.5.3",
"description": "VueXR is a Vue plugin that let's you project regular DOM components onto augmented reality (AR) markers in real-time.",
"engines": {
"yarn": ">=1.22.19",
"node": ">=18.4.0"
},
"files": [
"dist/**/*.js",
"dist/**/*.cjs",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map",
"dist/**/*.css",
"dist/**/*.html",
"src/opencv/build_simd/opencv.js"
],
"type": "module",
"main": "dist/vuexr.umd.cjs",
"module": "dist/vuexr.js",
"types": "dist/index.d.ts",
"style": "dist/style.css",
"exports": {
".": {
"import": "./dist/vuexr.js",
"require": "./dist/vuexr.umd.cjs"
},
"./style": "./dist/style.css",
"./opencv": "./src/opencv/build_simd/opencv.js"
},
"scripts": {
"dev": "vite --config vite.demo.config.js",
"build": "yarn run build:lib && yarn run build:demo",
"build:lib": "vite build && vue-tsc --declaration --emitDeclarationOnly",
"build:demo": "vite build --config vite.demo.config.js",
"prepublishOnly": "yarn build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/technokrat-llc/vuexr.git"
},
"author": "Markus Wegmann <mw@technokrat.ch>",
"license": "MIT",
"bugs": {
"url": "https://github.com/technokrat-llc/vuexr/issues"
},
"homepage": "https://github.com/technokrat-llc/vuexr#readme",
"dependencies": {
"fili": "^2.0.3",
"gl-matrix": "^3.4.3",
"normalize.css": "^8.0.1",
"vue": "^3.3.4"
},
"devDependencies": {
"@babel/types": "^7.22.10",
"@types/w3c-generic-sensor": "^1.0.6",
"@types/w3c-image-capture": "^1.0.7",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vitejs/plugin-vue": "^4.3.3",
"@vue/eslint-config-typescript": "^11.0.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"prettier": "^3.0.2",
"rollup": "^3.28.1",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.66.1",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vite-plugin-checker": "^0.6.2",
"vue-tsc": "^1.8.8"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:vue/vue3-recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"root": true
}
}