A world-class math input for the web
1{
2 "name": "@caret-js/core",
3 "version": "0.0.0",
4 "type": "module",
5 "main": "./dist/index.js",
6 "module": "./dist/index.js",
7 "types": "./dist/index.d.ts",
8 "exports": {
9 ".": {
10 "import": "./dist/index.js",
11 "require": "./dist/index.cjs"
12 }
13 },
14 "files": [
15 "dist"
16 ],
17 "scripts": {
18 "build": "tsup src/index.ts --format esm,cjs --dts --clean",
19 "dev": "tsup src/index.ts --format esm,cjs --dts --watch",
20 "test": "vitest run"
21 },
22 "devDependencies": {
23 "tsup": "^8.5.1",
24 "typescript": "~5.9.3",
25 "vitest": "^4.0.13"
26 }
27}