-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.42 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "vim-webgl-component",
"version": "0.3.17",
"description": "A demonstration app built on top of the vim-webgl-viewer",
"files": [
"dist"
],
"main": "./dist/vim-webgl-component.iife.js",
"types": "./dist/types/component.d.ts",
"module": "./dist/vim-webgl-component.mjs",
"homepage": "https://github.com/vimaec/vim-webgl-component.git",
"bugs": {
"url": "https://github.com/vimaec/vim-webgl-component/issues"
},
"license": "MIT",
"author": "VIM <hello@vimaec.com>",
"repository": {
"type": "git",
"url": "https://github.com/vimaec/vim-webgl-component.git"
},
"scripts": {
"dev": "vite --host",
"build": "vite build && npm run declarations",
"serve": "http-server ./docs -o",
"package": "npm run build && npm publish",
"declarations": "tsc --declaration --emitDeclarationOnly --outdir ./dist/types",
"eslint": "eslint --ext .js,.ts src --fix",
"documentation": "typedoc --entryPointStrategy expand --mergeModulesMergeMode module --out docs/api --excludeProtected --excludeExternals --excludePrivate --exclude ./src/main.tsx --exclude ./src/module.d.ts ./src/ && git add ./docs/"
},
"devDependencies": {
"@types/react": "^17.0.39",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"autoprefixer": "10.4.5",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"http-server": "^14.1.0",
"opener": "^1.5.2",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.2.4",
"typedoc": "^0.23.21",
"typedoc-plugin-merge-modules": "^4.0.1",
"typescript": "^4.9.3",
"vite": "^3.2.5"
},
"bundleDependencies": [
"vim-webgl-viewer"
],
"dependencies": {
"@firefox-devtools/react-contextmenu": "^5.1.0",
"jsx": "^0.9.89",
"re-resizable": "^6.9.9",
"react-complex-tree": "^2.0.0",
"react-tooltip": "^4.2.21",
"stats-js": "^1.0.1",
"tailwindcss-scoped-preflight": "^3.2.8",
"vim-webgl-viewer": "2.0.10"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"keywords": [
"3d",
"viewer",
"three.js",
"model",
"aec",
"vim",
"loader",
"webgl"
]
}