y-ary 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +10 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "y-ary",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Experimental TypeScript math library: Formula interpreter + smart array generation with 30+ validation rules",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -27,7 +27,11 @@
|
|
|
27
27
|
"build": "tsup",
|
|
28
28
|
"dev": "tsup --watch",
|
|
29
29
|
"prepublishOnly": "pnpm run build",
|
|
30
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
30
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
31
|
+
"release:patch": "npm version patch && git push origin main --tags && npm publish",
|
|
32
|
+
"release:minor": "npm version minor && git push origin main --tags && npm publish",
|
|
33
|
+
"release:major": "npm version major && git push origin main --tags && npm publish",
|
|
34
|
+
"release": "pnpm run release:patch"
|
|
31
35
|
},
|
|
32
36
|
"keywords": [
|
|
33
37
|
"typescript",
|
|
@@ -52,6 +56,9 @@
|
|
|
52
56
|
"url": "https://github.com/AmaiDonatsu/Y-ary/issues"
|
|
53
57
|
},
|
|
54
58
|
"license": "MIT",
|
|
55
|
-
"devDependencies": {
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"tsup": "^8.5.1",
|
|
61
|
+
"typescript": "^5.9.3"
|
|
62
|
+
},
|
|
56
63
|
"packageManager": "pnpm@10.15.1"
|
|
57
64
|
}
|