forked from vimaec/vim-webgl-component
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.84 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.84 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "vim-web",
"version": "1.0.0-alpha.0",
"description": "A demonstration app built on top of the vim-webgl-viewer",
"type": "module",
"files": [
"dist",
"!dist/types"
],
"readme": "README.md",
"main": "./dist/vim-web.iife.js",
"types": "./dist/vim-web.d.ts",
"module": "./dist/vim-web.js",
"homepage": "https://github.com/vimaec/vim-web.git",
"bugs": {
"url": "https://github.com/vimaec/vim-web/issues"
},
"license": "MIT",
"author": "VIM <hello@vimaec.com>",
"repository": {
"type": "git",
"url": "https://github.com/vimaec/vim-web"
},
"scripts": {
"dev": "vite",
"eslint": "eslint --ext .js,.ts,.tsx src --fix",
"documentation": "typedoc --entryPoints src/vim-web/index.ts --entryPointStrategy expand --out docs2 --excludeProtected --excludeExternals --excludePrivate",
"declarations": "tsc -p tsconfig.types.json",
"bundle-dts": "rollup -c rollup.dts.config.mjs",
"bundle-bim-dts": "rollup -c rollup.bim-dts.config.mjs",
"build": "vite build && npm run declarations && npm run bundle-dts && npm run bundle-bim-dts",
"publish:package": "npm run build && npm publish",
"publish:package:alpha": "npm run build && npm publish --tag alpha",
"publish:documentation": "npm run documentation && gh-pages -d docs2",
"publish:both": "npm run publish:package && npm run publish:documentation"
},
"devDependencies": {
"@types/dom-webcodecs": "^0.1.13",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"gh-pages": "^6.3.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"rollup": "^4.57.1",
"rollup-plugin-dts": "^6.3.0",
"tailwindcss": "^3.4.16",
"tailwindcss-scoped-preflight": "^3.4.9",
"typedoc": "^0.27.3",
"typescript": "^5.7.2",
"vite": "^6.0.2"
},
"dependencies": {
"@firefox-devtools/react-contextmenu": "^5.1.1",
"@types/three": "0.183.0",
"deepmerge": "^4.3.1",
"is-plain-object": "^5.0.0",
"re-resizable": "^6.9.9",
"react-complex-tree": "^2.6.0",
"react-tooltip": "^4.2.21",
"stats-js": "^1.0.1",
"ste-events": "^3.0.11",
"ste-signals": "^3.0.11",
"ste-simple-events": "^3.0.11",
"three": "0.183.0",
"vim-format": "1.0.15-dev.5"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"keywords": [
"3d",
"viewer",
"three.js",
"model",
"aec",
"vim",
"loader",
"webgl"
]
}