forked from vimaec/vim-webgl-viewer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.32 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.32 KB
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
{
"name": "vim-webgl-viewer",
"version": "1.0.5",
"description": "A high-performance 3D viewer and VIM file loader built on top of Three.JS.",
"files": [
"dist"
],
"main": "./dist/vim-webgl-viewer.iife.js",
"module": "/dist/vim-webgl-viewer.es.js",
"homepage": "https://github.com/vimaec/vim-webgl-viewer.git",
"bugs": {
"url": "https://github.com/vimaec/vim-webgl-viewer/issues"
},
"license": "MIT",
"author": "VIM <hello@vimaec.com>",
"repository": {
"type": "git",
"url": "https://github.com/vimaec/vim-webgl-viewer.git"
},
"scripts": {
"dev": "vite",
"build": "vite build && npm run gen-docs",
"bump-dev": "npm version prerelease --preid=dev",
"publish-dev": "npm publish --tag=dev",
"serve-docs": "http-server ./docs -o",
"serve-dist": "http-server ./dist -o",
"gen-docs": "node docs/genDocs.js",
"test-dist": "npm run build && npm run serve-dist",
"test-latest": "opener https://vimaec.github.io/vim-webgl-viewer/?model=https%3A%2F%2Fvim.azureedge.net%2Fsamples%2Fskanska.vim",
"test-dev": "opener https://vimaec.github.io/vim-webgl-viewer/index-dev.html?model=https%3A%2F%2Fvim.azureedge.net%2Fsamples%2Fskanska.vim",
"release-patch": "npm version patch && git push && npm publish && npm run test-latest",
"release-dev": "npm run build && npm run bump-dev && git push && npm run publish-dev && npm run test-dev",
"eslint": "eslint --ext .js,.ts src --fix"
},
"devDependencies": {
"@types/dat.gui": "^0.7.7",
"@types/stats.js": "^0.17.0",
"@types/three": "^0.133.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"http-server": "^14",
"mustache": "^4.2.0",
"npm-run-all": "^4.1.5",
"opener": "^1.5.2",
"prettier": "^2.4.1",
"typescript": "^4.4.3",
"vite": "^2.6.3"
},
"dependencies": {
"dat.gui": "^0.7.7",
"deepmerge": "^4.2.2",
"stats.js": "^0.17.0",
"three": "^0.133.1"
},
"keywords": [
"3d",
"viewer",
"three.js",
"model",
"aec",
"vim",
"loader",
"webgl"
]
}