@sleet-js/meme-cooking-contract-methods-const 0.0.6
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/README.md +38 -0
- package/dist/index.js +3 -0
- package/package.json +28 -0
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# meme-cooking-contract-methods-const
|
|
2
|
+
TypeScript constants for meme cooking smart contract methods
|
|
3
|
+
|
|
4
|
+
ℹ️ can be used with any near api js option.
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### DEV
|
|
11
|
+
to develop and publish this package
|
|
12
|
+
```bash
|
|
13
|
+
bun install
|
|
14
|
+
bun run build
|
|
15
|
+
bun publish --dry-run
|
|
16
|
+
bunx npm login
|
|
17
|
+
bun publish --access public
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
### HOW TO USE
|
|
23
|
+
|
|
24
|
+
add
|
|
25
|
+
```sh
|
|
26
|
+
npm i @sleet-js/meme-cooking-contract-methods-const
|
|
27
|
+
bun add @sleet-js/meme-cooking-contract-methods-const
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
import
|
|
31
|
+
```js
|
|
32
|
+
import { meme_cooking_methods_const } from '@sleet-js/meme-cooking-contract-methods-const';
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
copyright 2026 by sleet.near
|
package/dist/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sleet-js/meme-cooking-contract-methods-const",
|
|
3
|
+
"version": "0.0.6",
|
|
4
|
+
"description": "TypeScript constants for meme cooking smart contract methods",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/sleet-js/smart-contract-methods-const.git"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://sleet-js.near.page",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"main": "dist/index.js",
|
|
12
|
+
"module": "index.ts",
|
|
13
|
+
"types": "dist/index.d.ts",
|
|
14
|
+
"type": "module",
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "bun build index.ts --outdir dist --target bun",
|
|
20
|
+
"prepublishOnly": "bun run build"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@types/bun": "latest"
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"typescript": "^5"
|
|
27
|
+
}
|
|
28
|
+
}
|