axp-ts/package.json

39 lines
794 B
JSON
Raw Normal View History

2023-07-11 09:53:08 +03:00
{
"name": "axp-ts",
2023-10-05 17:01:45 +03:00
"version": "1.9.10",
2023-07-11 09:53:08 +03:00
"description": "TypeScript helper library",
"author": "AntoXa PRO <info@antoxa.pro>",
2023-07-11 09:56:58 +03:00
"homepage": "https://antoxahub.ru/antoxa/axp-ts",
"repository": {
"type": "git",
"url": "https://antoxahub.ru/antoxa/axp-ts.git"
},
2023-10-05 17:01:45 +03:00
"module": "./dist/index.mjs",
"main": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"requier": "./dist/index.umd.js"
},
"./tsconfig.json": "./tsconfig.json"
},
2023-07-11 09:53:08 +03:00
"files": [
"dist",
2023-10-03 11:18:08 +03:00
"tsconfig.json"
2023-07-11 09:53:08 +03:00
],
"scripts": {
2023-10-05 17:01:45 +03:00
"build": "vite build",
2023-07-11 09:53:08 +03:00
"prepare": "npm run build"
},
2023-10-05 17:01:45 +03:00
"peerDependencies": {
"zod": "^3.22.4"
2023-07-11 09:53:08 +03:00
},
"devDependencies": {
2023-07-11 09:56:58 +03:00
"prettier": "^2.8.8",
2023-10-05 17:01:45 +03:00
"typescript": "^4.9.5",
"vite": "^4.4.11",
"vite-plugin-dts": "^3.6.0"
2023-07-11 09:53:08 +03:00
}
}