-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.15 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
99
100
101
102
103
104
105
106
107
108
109
{
"name": "warp-grid",
"version": "2.4.3",
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"description": "Create a complex grid, warped in 2D space and access data about its lines and cells",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"source": "./src/index.ts"
}
},
"files": [
"/dist",
"/src",
"/docs"
],
"homepage": "https://warp-grid.undistraction.com",
"repository": {
"type": "git",
"url": "git+https://github.com/undistraction/warp-grid.git"
},
"bugs": {
"url": "https://github.com/undistraction/warp-grid/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",
"link": "pnpm link ../coons-patch",
"unlink": "pnpm unlink ../coons-patch",
"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.2.2",
"@eslint/js": "^9.16.0",
"@jest/globals": "^29.7.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/eslint-plugin": "^1.1.14",
"audit-ci": "^7.1.0",
"babel-jest": "^29.7.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",
"rollup": "^4.22.4",
"semantic-release": "^24.0.0",
"ts-jest": "^29.2.3",
"typedoc": "^0.27.0",
"typescript-eslint": "^8.17.0",
"vite": "^6.0.0",
"vite-plugin-dts": "4.3.0",
"vitest": "^2.0.5"
},
"dependencies": {
"bezier-easing": "^2.1.0",
"coons-patch": "^2.0.5",
"fast-memoize": "^2.5.2",
"matrix-js": "^1.7.1"
},
"pnpm": {
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0",
"cross-spawn": "^7.0.5"
}
}
}