-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.73 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.73 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
{
"name": "libtess-ts",
"version": "0.0.1",
"description": "Optimized TypeScript port of libtess.js, itself based on the GLU tessellator. Fast, high quality polygon triangulation",
"type": "module",
"main": "./dist/libtess.min.js",
"module": "./dist/libtess.min.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"development": "./dist/libtess.es.js",
"default": "./dist/libtess.min.js"
}
},
"files": [
"dist",
"types",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/countertype/libtess-ts.git"
},
"homepage": "https://github.com/countertype/libtess-ts",
"bugs": "https://github.com/countertype/libtess-ts/issues",
"scripts": {
"build": "rollup -c && tsc --emitDeclarationOnly",
"test": "vitest run",
"test:watch": "vitest",
"bench": "node benchmarks/benchmark.mjs",
"bench:browser": "node benchmarks/browser/serve.js",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts' '*.js' '*.ts' '*.json'",
"format:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts' '*.js' '*.ts' '*.json'",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"tessellate",
"tessellation",
"triangulate",
"triangulation",
"glu",
"libtess",
"polygon",
"geometry",
"mesh",
"typescript"
],
"author": "Jeremy Tribby, Countertype LLC",
"license": "SGI-B-2.0",
"sideEffects": false,
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"libtess": "^1.2.2",
"prettier": "^3.8.1",
"rollup": "^4.57.1",
"tess2": "^1.0.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}