-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 loc) · 3.21 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "verge3d",
"version": "4.8.0",
"date": "2024-11-13",
"description": "Toolkit for creating 3D web interactives",
"type": "module",
"main": "./build/v3d.js",
"module": "./build/v3d.module.js",
"exports": {
".": "./build/v3d.module.js"
},
"repository": "verge3d",
"files": [
"build/v3d.js",
"build/v3d.module.js",
"keymanager.py",
"LICENSE.txt",
"README.md"
],
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"bin": {
"keymanager": "./keymanager.py"
},
"scripts": {
"babel-lint": "node babel_lint.js",
"dev": "rollup -c -w -m inline --environment DEBUG_SHADERS",
"dev-puzzles": "npm run --prefix puzzles dev",
"dev-copy": "rollup -c -w -m inline --environment COPY_ENGINE,DEBUG_SHADERS",
"build": "rollup -c --environment DEBUG_SHADERS",
"build-release": "rollup -c && npm run build-umd && npm run build-esm && npm run test-v3d",
"build-umd": "cp build/v3d.js build/v3d.unminified.js && babel build/v3d.unminified.js | terser -cm --comments /webpackIgnore/ > build/v3d.js",
"build-esm": "cp build/v3d.module.js build/v3d.module.unminified.js && terser build/v3d.module.unminified.js -cm --comments /webpackIgnore/ > build/v3d.module.js",
"test-v3d": "npm run babel-lint",
"build-puzzles": "npm run --prefix puzzles build",
"build-puzzles-release": "npm run --prefix puzzles build-release",
"copy-engine": "sh utils/copy_engine.sh applications",
"build-docs": "node docs/generate.js && npm run build-docs-pzlib-api",
"build-docs-manual": "node docs/generate.js manual",
"build-docs-pzlib-api": "npm run --prefix docs/pzlib_api build-docs",
"dev-docs": "npm-watch build-docs",
"dev-docs-manual": "npm-watch build-docs-manual",
"build-all": "npm run build-release && npm run copy-engine && npm run build-puzzles-release && npm run build-docs",
"prepack": "[[ -f manager/lib/keymanager.py ]] && cp manager/lib/keymanager.py . || exit 0",
"postpack": "rm -f ./keymanager.py"
},
"watch": {
"build-docs": {
"patterns": [
"docs/api",
"docs/manual"
],
"extensions": [
"html"
],
"quiet": false
},
"build-docs-manual": {
"patterns": [
"docs/manual"
],
"extensions": [
"html"
],
"quiet": false
}
},
"keywords": [
"verge3d",
"v3d.js",
"3dweb",
"web3d",
"blender",
"3ds-max",
"maya",
"gltf",
"metaverse",
"javascript",
"3d",
"virtual-reality",
"augmented-reality",
"webgl",
"webgl2",
"webaudio",
"webgpu",
"webxr",
"canvas",
"svg",
"html5"
],
"author": "Soft8Soft",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://www.soft8soft.com/forum/bug-reports-and-feature-requests/"
},
"homepage": "https://www.soft8soft.com/verge3d/",
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"chalk": "^4.1.2",
"glob": "^7.2.3",
"npm-watch": "^0.6.0",
"rollup": "^3.20.2",
"rollup-plugin-class-tree": "file:utils/rollup-plugin-class-tree",
"strip-comments": "^2.0.1",
"terser": "^5.15.0"
}
}