Compare commits

..

No commits in common. "main" and "v1.0.0-dev-1" have entirely different histories.

3 changed files with 9 additions and 16 deletions

3
.gitignore vendored
View File

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

4
package-lock.json generated
View File

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

View File

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