Compare commits

..

6 Commits

Author SHA1 Message Date
Strife
e85b4ab77c fix 2025-10-16 23:20:40 +05:00
Strife
47080840a0 1.0.3 2025-10-16 22:40:51 +05:00
Strife
18f1b1ecc9 fix 2025-10-16 22:40:43 +05:00
Strife
693366513c 1.0.2 2025-10-16 22:38:30 +05:00
Strife
f75ad54c6c 1.0.1 2025-10-16 22:38:23 +05:00
Strife
b768752548 added fast publish 2025-10-16 22:38:16 +05:00
3 changed files with 16 additions and 9 deletions

3
.gitignore vendored
View File

@ -0,0 +1,3 @@
node_modules
dist
.env

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@ametatools/tools",
"version": "1.0.0",
"version": "1.0.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@ametatools/tools",
"version": "1.0.0",
"version": "1.0.3",
"license": "MIT",
"devDependencies": {
"@types/jest": "^30.0.0",

View File

@ -1,13 +1,19 @@
{
"name": "@ametatools/tools",
"version": "1.0.1-dev-1.0",
"name": "@ameta/tools",
"version": "1.0.3",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build"
"prepublishOnly": "npm run build",
"prepublish": "npm run build",
"publish-package": "npm run prepublish && npm publish",
"publish-dry-run": "npm run prepublish && npm publish --dry-run",
"version-patch": "npm run prepublish && npm version patch && npm publish",
"version-minor": "npm run prepublish && npm version minor && npm publish",
"version-major": "npm run prepublish && npm version major && npm publish",
"clean": "rm -rf dist"
},
"author": "Maidanov M. D.",
"license": "MIT",
@ -19,9 +25,7 @@
"registry": "http://192.168.0.10:3002/api/packages/strife/npm/"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.8.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.5"
"typescript": "^5.7.3"
}
}