-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
22 lines (22 loc) · 858 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "aframe-htmlembed-component",
"version": "1.0.0",
"description": "HTML Embed is a component created for A-Frame. The HTML Embed component allows for arbitrary html to be inserted into your aframe scene. It allows you to update the display within A-Frame simply by manipulating the DOM as you normally would.",
"main": "dist/build.js",
"scripts": {
"build": "rm -fR dist/* && webpack --mode=production",
"start": "webpack-dev-server --mode development --open-page examples/"
},
"author": "supereggbert",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.6",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"copy-webpack-plugin": "^5.0.3",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
}
}