@numericelements/knot-sequence
Version:
A library for generating and manipulating knot sequences for b-spline curves and surfaces
56 lines (55 loc) • 1.34 kB
JSON
{
"name": "@numericelements/knot-sequence",
"version": "0.1.2",
"description": "A library for generating and manipulating knot sequences for b-spline curves and surfaces",
"main": "dist/cjs/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/cjs/index.cjs",
"types": "./dist/index.d.ts"
}
},
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && rollup -c",
"test": "mocha --loader=ts-node/esm --experimental-specifier-resolution=node 'test/**/*.ts'",
"prepare": "npm run build"
},
"type": "module",
"keywords": [
"b-spline",
"knot-sequence",
"curves",
"surfaces",
"cad"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/chai": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.6",
"chai": "^5.1.2",
"jest": "^29.7.0",
"mocha": "^11.0.1",
"rimraf": "^5.0.0",
"rollup": "^4.36.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"tslib": "^2.8.1"
}
}