Files
penx/packages/math/package.json
2025-04-29 11:50:57 +08:00

23 lines
435 B
JSON

{
"name": "@penx/math",
"version": "0.0.0",
"private": true,
"type": "module",
"module": "index.ts",
"main": "index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"lint": "eslint . --max-warnings 0",
"check-types": "tsc --noEmit"
},
"devDependencies": {
"@penx/typescript-config": "workspace:*"
},
"dependencies": {
"@penx/types": "workspace:*"
}
}