-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "babylonjs-ink-sample",
"version": "1.0.0",
"description": "Quick Demo of using the Babylon.js to simulate inking.",
"author": {
"name": "Sebastien Vandenberghe"
},
"contributors": [
"Sebastien Vandenberghe"
],
"keywords": [
"controls",
"ink",
"video",
"acceleration",
"3D",
"2D",
"javascript",
"html5",
"webgl",
"webgl2",
"webgpu",
"babylon"
],
"license": "MIT",
"readme": "README.md",
"typings": "dist/src/index.d.ts",
"main": "dist/src/index.js",
"files": [
"dist/src/**",
"README.md"
],
"scripts": {
"build": "webpack --env=prod",
"start": "npx webpack-dev-server --open",
"devServer": "npx webpack-dev-server"
},
"devDependencies": {
"@babylonjs/core": "^5.0.0-alpha.54",
"@babylonjs/inspector": "^5.0.0-alpha.54",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.94.0",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.12.0"
}
}