-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "mdx-m3-viewer",
"version": "5.12.0",
"description": "A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack -w --mode=development",
"serve": "webpack serve",
"prepublishOnly": "node clean.js && tsc && webpack --mode=production --env=umd"
},
"repository": {
"type": "git",
"url": "https://github.com/flowtsohg/mdx-m3-viewer.git"
},
"author": "Chananya Freiman",
"license": "MIT",
"bugs": {
"url": "https://github.com/flowtsohg/mdx-m3-viewer/issues"
},
"homepage": "https://github.com/flowtsohg/mdx-m3-viewer#readme",
"dependencies": {
"fengari": "^0.1.4",
"gl-matrix": "3.3.0",
"pako": "^2.0.3",
"tga-js": "^1.1.1"
},
"devDependencies": {
"@types/node": "^12.12.17",
"@types/pako": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.29.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.0.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}