Files
impost/packages/lib/package.json
Zoe cfab3d0b8f Initial commit
Once again a weird place to commit, I have already done a lot of work, but I am just bad at using git, okay.
2025-11-17 16:12:26 +00:00

40 lines
966 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"
}
}