28 lines
722 B
JSON
28 lines
722 B
JSON
{
|
|
"name": "@sammo-ts/logic",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -b tsconfig.build.json",
|
|
"dev": "node -e \"console.log('dev not configured')\"",
|
|
"lint": "node -e \"console.log('lint not configured')\"",
|
|
"test": "vitest run --config vitest.config.ts"
|
|
},
|
|
"dependencies": {
|
|
"@sammo-ts/common": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"vite-tsconfig-paths": "^4.3.2",
|
|
"vitest": "^4.0.16"
|
|
}
|
|
}
|