anzar 1.0.1 → 1.0.24

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.
Files changed (3) hide show
  1. package/.gitlab-ci.yml +23 -0
  2. package/Makefile +8 -0
  3. package/package.json +25 -21
package/.gitlab-ci.yml ADDED
@@ -0,0 +1,23 @@
1
+ stages:
2
+ - deploy
3
+
4
+ # permissions:
5
+ # id-token: write # Required for OIDC
6
+ # contents: read
7
+
8
+ publish_npm:
9
+ stage: deploy
10
+ image: node:latest
11
+ id_tokens:
12
+ NPM_ID_TOKEN:
13
+ aud: "npm:registry.npmjs.org"
14
+ SIGSTORE_ID_TOKEN:
15
+ aud: sigstore
16
+ script:
17
+ - npm publish
18
+
19
+ # only:
20
+ # - tags
21
+
22
+ # rules:
23
+ # - if: $CI_COMMIT_TAG
package/Makefile ADDED
@@ -0,0 +1,8 @@
1
+ clean:
2
+ rm -rf dist
3
+ install:
4
+ pnpm i
5
+ publish:
6
+ pnpm version patch
7
+ # pnpm build
8
+ git push
package/package.json CHANGED
@@ -1,22 +1,26 @@
1
1
  {
2
- "name": "anzar",
3
- "version": "1.0.1",
4
- "description": "Anzar SDK",
5
- "main": "index.ts",
6
- "keywords": [],
7
- "repository": {
8
- "type": "git",
9
- "url": "git+https://gitlab.com/anzar_software/typescript-sdk.git"
10
- },
11
- "author": "Hakou Guelfen",
12
- "license": "GPL",
13
- "dependencies": {
14
- "@types/node": "^25.0.3",
15
- "axios": "^1.13.2",
16
- "yaml": "^2.8.2",
17
- "zod": "^4.2.1"
18
- },
19
- "scripts": {
20
- "test": "echo \"Error: no test specified\" && exit 1"
21
- }
22
- }
2
+ "name": "anzar",
3
+ "version": "1.0.24",
4
+ "description": "Anzar SDK",
5
+ "main": "index.ts",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [],
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://gitlab.com/anzar_software/typescript-sdk.git"
13
+ },
14
+ "author": "Hakou Guelfen",
15
+ "license": "GPLV3",
16
+ "packageManager": "pnpm@10.28.2",
17
+ "publishConfig": {
18
+ "access": "public"
19
+ },
20
+ "dependencies": {
21
+ "@types/node": "^25.0.3",
22
+ "axios": "^1.13.2",
23
+ "yaml": "^2.8.2",
24
+ "zod": "^4.2.1"
25
+ }
26
+ }