-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "b-spline-algorithms",
"version": "0.0.1",
"description": "A comprehensive TypeScript library for B-spline and NURBS algorithms, offering both functional and optimized implementations.",
"main": "src/index.ts",
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"watch": "tsc -w",
"test": "tsc && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericdemers/b-spline-algorithms.git"
},
"keywords": [
"b-spline",
"nurbs",
"spline",
"curve",
"surface",
"geometry",
"cad",
"computer-aided-design",
"de Boor",
"typescript"
],
"author": "Eric Demers",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericdemers/b-spline-algorithms/issues"
},
"homepage": "https://github.com/ericdemers/b-spline-algorithms#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"fast-check": "^3.22.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}