-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.77 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.77 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
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
{
"name": "coons-patch",
"version": "4.1.0",
"packageManager": "pnpm@10.5.1+sha512.c424c076bd25c1a5b188c37bb1ca56cc1e136fbf530d98bcb3289982a08fd25527b8c9c4ec113be5e3393c39af04521dd647bcf1d0801eaf8ac6a7b14da313af",
"description": "Create a Coons patch and access points and curves on its surface",
"main": "./dist/index.common.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"/dist",
"/src",
"/docs"
],
"homepage": "https://coons-patch.undistraction.com",
"repository": {
"type": "git",
"url": "git+https://github.com/Undistraction/coons-patch.git"
},
"bugs": {
"url": "https://github.com/undistraction/coons-patch/issues"
},
"publishConfig": {
"access": "public"
},
"private": false,
"type": "module",
"scripts": {
"prepare": "husky",
"test": "vitest run",
"test-watch": "vitest",
"test-coverage": "vitest run --coverage",
"test-snapshot": "vitest run -u",
"bench": "vitest bench",
"lint": "pnpm run lint-prettier && pnpm run lint-eslint",
"lint-prettier": "prettier . --write",
"lint-eslint": "eslint './**/*.{ts,js,cjs}' --fix",
"build": "vite build && pnpm run docs",
"build-watch": "vite build --watch",
"docs": "typedoc",
"docs-open": "open ./docs/index.html",
"release-preview": "semantic-release --no-ci --dry-run --debug",
"tsc": "tsc",
"audit-npm-packages": "audit-ci --config ./audit-ci.jsonc --skip-dev"
},
"keywords": [
"coons patch",
"geometry",
"math",
"surface",
"grid"
],
"author": "Pedr Browne",
"license": "MIT",
"devDependencies": {
"@commitlint/config-conventional": "19.8.1",
"@eslint/compat": "1.3.0",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.29.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.2",
"@types/node": "22.15.19",
"@vitest/coverage-v8": "3.2.4",
"@vitest/eslint-plugin": "1.2.0",
"audit-ci": "7.1.0",
"commitlint": "19.8.1",
"dotenv": "16.5.0",
"eslint": "9.29.0",
"eslint-plugin-prettier": "5.5.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unused-imports": "4.1.4",
"eslint-plugin-vitest": "0.5.4",
"globals": "16.2.0",
"husky": "9.1.7",
"jest-extended": "5.0.2",
"lint-staged": "16.1.2",
"nodemon": "3.1.10",
"prettier": "3.5.3",
"prop-types": "15.8.1",
"semantic-release": "25.0.3",
"typedoc": "0.28.4",
"typescript": "5.8.3",
"typescript-eslint": "8.34.1",
"vite": "6.3.5",
"vite-plugin-dts": "4.5.4",
"vitest": "3.2.4"
},
"dependencies": {
"fast-memoize": "2.5.2"
}
}