@biglup/cometa 1.0.0

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.
@@ -0,0 +1,4 @@
1
+ {
2
+ "type": "module",
3
+ "sideEffects": false
4
+ }
package/package.json ADDED
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "@biglup/cometa",
3
+ "version": "1.0.0",
4
+ "description": "Cometa JS is a lightweight and high performance library designed to streamline transaction building and smart contract interactions on the Cardano blockchain",
5
+ "engines": {
6
+ "node": ">=16.0.0",
7
+ "npm": ">=7.0.0"
8
+ },
9
+ "main": "dist/cjs/index.js",
10
+ "exports": {
11
+ ".": {
12
+ "import": "./dist/esm/index.js",
13
+ "require": "./dist/cjs/index.js"
14
+ }
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/Biglup/cometa.js.git"
19
+ },
20
+ "publishConfig": {
21
+ "access": "public"
22
+ },
23
+ "contributors": [
24
+ "Angel Castillo <angel.castillob@prototnmail.io>"
25
+ ],
26
+ "license": "Apache-2.0",
27
+ "scripts": {
28
+ "build": "tsup --config ./tsup.config.ts && mkdir -p dist/esm && mkdir -p dist/cjs && cp ./build/esm-package.json dist/esm/package.json && mv ./dist/index.mjs ./dist/esm/index.js && mv ./dist/index.mjs.map ./dist/esm/index.js.map && cp ./dist/index.d.ts ./dist/esm/index.d.ts && cp ./dist/index.d.mts ./dist/esm/index.d.mts && mv ./dist/index.js ./dist/cjs/index.js && mv ./dist/index.js.map ./dist/cjs/index.js.map && mv ./dist/index.d.ts ./dist/cjs/index.d.ts && mv ./dist/index.d.mts ./dist/cjs/index.d.mts && cp ./build/cjs-package.json dist/cjs/package.json",
29
+ "test": "yarn build && node --expose-gc ./node_modules/.bin/jest -c ./jest.config.js",
30
+ "cleanup:dist": "rm -rf dist",
31
+ "cleanup:nm": "rm -rf node_modules",
32
+ "cleanup": "run-s cleanup:dist cleanup:nm",
33
+ "lint": "eslint -c ./complete.eslintrc.js \"src/**/*.ts\" \"test/**/*.ts\"",
34
+ "lint:fix": "yarn lint --fix",
35
+ "prepack": "yarn build"
36
+ },
37
+ "dependencies": {},
38
+ "devDependencies": {
39
+ "@atixlabs/eslint-config": "^1.2.3",
40
+ "@types/jest": "^26.0.24",
41
+ "@types/node": "^22.10.2",
42
+ "@typescript-eslint/eslint-plugin": "^5.27.1",
43
+ "@typescript-eslint/parser": "^5.27.1",
44
+ "esbuild-plugin-inline-worker": "^0.1.1",
45
+ "eslint": "^7.32.0",
46
+ "eslint-import-resolver-typescript": "^2.7.0",
47
+ "eslint-plugin-filenames": "^1.3.2",
48
+ "eslint-plugin-import": "^2.24.2",
49
+ "eslint-plugin-jest": "^24.4.0",
50
+ "eslint-plugin-prettier": "^3.4.0",
51
+ "eslint-plugin-promise": "^5.1.0",
52
+ "eslint-plugin-sonarjs": "^0.9.1",
53
+ "eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
54
+ "eslint-plugin-sort-keys-fix": "^1.1.2",
55
+ "eslint-plugin-unicorn": "^35.0.0",
56
+ "eslint-watch": "^7.0.0",
57
+ "fs-extra": "^10.0.0",
58
+ "husky": "^7.0.1",
59
+ "jest": "^29.7.0",
60
+ "npm-run-all": "^4.1.5",
61
+ "prettier": "^2.3.2",
62
+ "shx": "^0.3.3",
63
+ "ts-jest": "^29.2.5",
64
+ "ts-node": "^10.0.0",
65
+ "ts-node-dev": "^1.1.8",
66
+ "tsup": "^8.2.2",
67
+ "typedoc": "^0.23.24",
68
+ "typedoc-plugin-missing-exports": "^1.0.0",
69
+ "typescript": "^4.7.4"
70
+ },
71
+ "files": [
72
+ "dist/*",
73
+ "!dist/tsconfig.tsbuildinfo",
74
+ "LICENSE"
75
+ ],
76
+ "bugs": {
77
+ "url": "https://github.com/Biglup/cometa.js/issues"
78
+ },
79
+ "homepage": "https://github.com/Biglup/cometa.js#readme",
80
+ "author": "Angel Castillo <angel.castillob@prototnmail.io>"
81
+ }