@orca-so/whirlpools-core 0.0.1
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 +1 -0
- package/package.json +46 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Orca Whirlpools Typescript Core
|
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@orca-so/whirlpools-core",
|
|
3
|
+
"description": "Orca's core typescript package.",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"main": "./dist/nodejs/orca_whirlpools_core_js_bindings.js",
|
|
6
|
+
"types": "./dist/nodejs/orca_whirlpools_core_js_bindings.d.ts",
|
|
7
|
+
"browser": "./dist/web/orca_whirlpools_core_js_bindings.js",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"sideEffects": [
|
|
10
|
+
"./dist/web/snippets/*"
|
|
11
|
+
],
|
|
12
|
+
"files": [
|
|
13
|
+
"./dist/*/orca_whirlpools_core_js_bindings_bg.wasm",
|
|
14
|
+
"./dist/*/orca_whirlpools_core_js_bindings.js",
|
|
15
|
+
"./dist/*/orca_whirlpools_core_js_bindings.d.ts",
|
|
16
|
+
"README.md"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "wasm-pack build --out-dir ./dist/web --target web && wasm-pack build --out-dir ./dist/nodejs --target nodejs",
|
|
20
|
+
"test": "tsc --noEmit && vitest run tests",
|
|
21
|
+
"clean": "cargo clean && rimraf dist"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@orca-so/whirlpools-client": "*",
|
|
25
|
+
"@orca-so/whirlpools-rust-core": "*",
|
|
26
|
+
"typescript": "^5.6.3",
|
|
27
|
+
"wasm-pack": "^0.13.0"
|
|
28
|
+
},
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "git+https://github.com/orca-so/whirlpools.git"
|
|
32
|
+
},
|
|
33
|
+
"license": "Apache-2.0",
|
|
34
|
+
"keywords": [
|
|
35
|
+
"solana",
|
|
36
|
+
"crypto",
|
|
37
|
+
"defi",
|
|
38
|
+
"dex",
|
|
39
|
+
"amm"
|
|
40
|
+
],
|
|
41
|
+
"author": "team@orca.so",
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/orca-so/whirlpools/issues"
|
|
44
|
+
},
|
|
45
|
+
"homepage": "https://orca.so"
|
|
46
|
+
}
|