-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.63 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
{
"name": "mind-ar-react",
"version": "0.1.1",
"main": "dist/index.js",
"scripts": {
"dev": "vite",
"build:vite": "tsc && vite build",
"build:prod": "tsc --project tsconfig.build.json",
"preview": "vite preview",
"prepare": "husky install"
},
"peerDependencies": {
"aframe": "^1.3.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"aframe-react-component": "^0.1.1",
"lodash": "^4.17.21",
"mind-ar-ts": "^0.5.7"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/aframe": "^1.2.0",
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@vitejs/plugin-react": "^2.0.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.1",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"react-dropzone": "^14.2.1",
"typescript": "^4.6.3",
"vite": "^3.0.2"
},
"description": "A Mind AR Modules for React",
"repository": {
"type": "git",
"url": "git+https://github.com/krsbx/mind-ar-react.git"
},
"keywords": [
"react",
"augmented-reality",
"mind-ar"
],
"author": "krsbx",
"license": "MIT",
"bugs": {
"url": "https://github.com/krsbx/mind-ar-react/issues"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,scss,md}": "prettier --write"
},
"files": [
"dist"
]
}