-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.68 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
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
98
{
"name": "coons-patch",
"version": "2.0.5",
"packageManager": "pnpm@9.15.0+sha256.09a8fe31a34fda706354680619f4002f4ccef6dadff93240d24ef6c831f0fd28",
"description": "Create a Coons patch and access points and curves on its surface",
"main": "./dist/index.common.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"source": "./src/index.ts"
}
},
"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",
"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.5.0",
"@eslint/js": "^9.16.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/eslint-plugin": "^1.1.14",
"audit-ci": "^7.1.0",
"commitlint": "^19.3.0",
"dotenv": "^16.4.5",
"eslint": "^9.16.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "4.1.4",
"globals": "^15.8.0",
"husky": "^9.0.11",
"jest-extended": "^4.0.2",
"lint-staged": "^15.2.7",
"nodemon": "^3.1.4",
"prettier": "3.4.2",
"prop-types": "^15.8.1",
"semantic-release": "^24.1.2",
"typedoc": "^0.27.0",
"typescript": "5.7.2",
"typescript-eslint": "^8.17.0",
"vite": "^6.0.0",
"vite-plugin-dts": "4.3.0",
"vitest": "^2.0.5"
},
"dependencies": {
"fast-memoize": "^2.5.2"
},
"pnpm": {
"overrides": {
"cross-spawn": "^7.0.5"
}
}
}