Files
impost/packages/lib/package.json
Zoe 9ba5b12dac Clean up code. Reorganize files. Port stuff from other branches. + more
This turns the project into a monorepo using pnpm workspaces,
dramatically simplifying the build process. It also fixes a lot of bugs
and just generally makes the codebase a lot cleaner.
2025-12-04 18:48:00 -06:00

39 lines
965 B
JSON

{
"name": "@impost/lib",
"version": "0.1.0",
"type": "module",
"license": "BSL-1.0",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./solver": {
"types": "./dist/solver.d.ts",
"import": "./dist/solver.js"
},
"./validator": {
"types": "./dist/validator.d.ts",
"import": "./dist/validator.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"watch": "tsc && vite build --watch",
"dev": "vite",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"oxc-minify": "^0.97.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "npm:rolldown-vite@latest",
"vite-plugin-dts": "^4.5.4"
},
"dependencies": {
"uuidv7": "^1.0.2"
}
}