mirror of
https://github.com/penxio/penx.git
synced 2026-01-11 22:48:10 -05:00
23 lines
435 B
JSON
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:*"
|
|
}
|
|
}
|