-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.28 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
{
"name": "gypsum-mesh",
"version": "0.3.5",
"description": "Procedural mesh generation library for Wonderland Engine, with CSG powered by Manifold",
"exports": "./dist/index.esm.min.js",
"types": "dist/index.d.ts",
"type": "module",
"wonderlandengine": {},
"packageManager": "pnpm@8.15.7+sha256.50783dd0fa303852de2dd1557cd4b9f07cb5b018154a6e76d0f40635d6cee019",
"files": [
"dist/*.js",
"dist/*.js.map"
],
"scripts": {
"lint": "eslint . --ext .ts",
"typecheck": "tsc -p ./tsconfig-client.json --noEmit && tsc -p ./tsconfig-worker.json --noEmit",
"clean-build": "shx rm -f dist/*.js dist/*.map dist/*.ts",
"build": "shx rm -f dist/*.js dist/*.map && esbuild src/client.ts --sourcemap --bundle --minify --platform=neutral --external:@wonderlandengine/api --external:gl-matrix --outfile=dist/index.esm.min.js && esbuild src/worker.ts --define:import.meta.url=globalThis.location.href --external:module --sourcemap --bundle --minify --platform=browser --format=iife --outfile=dist/gypsum-manifold.worker.min.js",
"gen-types": "npm-dts generate --entry client.ts --output dist/index.d.ts -L debug --tsc ' -p ./tsconfig-client.json'",
"prepack": "npm run typecheck && npm run lint && npm run clean-build && npm run build && npm run gen-types",
"docs": "typedoc --out docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/playkostudios/gypsum.git"
},
"keywords": [
"3D",
"mesh",
"manifold",
"CSG",
"wonderland",
"typescript"
],
"contributors": [
{
"name": "Playko",
"url": "https://www.playko.com/"
},
{
"name": "rafern",
"email": "rafael@playko.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/playkostudios/gypsum/issues"
},
"homepage": "https://github.com/playkostudios/gypsum#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@wonderlandengine/api": "^1.1.5",
"esbuild": "^0.17.19",
"eslint": "^8.40.0",
"gl-matrix": "^3.4.3",
"manifold-3d": "2.1.0",
"npm-dts": "^1.3.12",
"shx": "^0.3.4",
"typedoc": "^0.23.28",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@wonderlandengine/api": ">= 1 < 2",
"manifold-3d": "2.1"
}
}