A world-class math input for the web
at main 29 lines 612 B view raw
1{ 2 "name": "@caret-js/math", 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 }, 21 "devDependencies": { 22 "tsup": "^8.5.1", 23 "typescript": "~5.9.3", 24 "vitest": "^4.0.15" 25 }, 26 "dependencies": { 27 "@caret-js/core": "workspace:*" 28 } 29}