solana-web3-community 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.
package/package.json ADDED
@@ -0,0 +1,72 @@
1
+ {
2
+ "name": "solana-web3-community",
3
+ "version": "1.0.0",
4
+ "description": "Community-maintained Solana JavaScript API with enhanced stability",
5
+ "keywords": [
6
+ "api",
7
+ "blockchain"
8
+ ],
9
+ "license": "MIT",
10
+ "author": "Solana Labs Maintainers <maintainers@solanalabs.com>",
11
+ "homepage": "https://solana.com/",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/solana-foundation/solana-web3.js.git"
15
+ },
16
+ "bugs": {
17
+ "url": "http://github.com/solana-foundation/solana-web3.js.git/issues"
18
+ },
19
+ "publishConfig": {
20
+ "access": "public"
21
+ },
22
+ "browser": {
23
+ "./lib/index.cjs.js": "./lib/index.browser.cjs.js",
24
+ "./lib/index.esm.js": "./lib/index.browser.esm.js"
25
+ },
26
+ "react-native": "lib/index.native.js",
27
+ "main": "lib/index.cjs.js",
28
+ "module": "lib/index.esm.js",
29
+ "types": "lib/index.d.ts",
30
+ "browserslist": [
31
+ "defaults",
32
+ "not IE 11",
33
+ "maintained node versions"
34
+ ],
35
+ "files": [
36
+ "/lib",
37
+ "/src"
38
+ ],
39
+ "scripts": {
40
+ "compile:docs": "typedoc --treatWarningsAsErrors",
41
+ "compile:js": "cross-env NODE_ENV=production rollup -c",
42
+ "compile:typedefs": "./scripts/typegen.sh",
43
+ "build:fixtures": "set -ex; ./test/fixtures/noop-program/build.sh",
44
+ "clean": "rimraf ./doc ./declarations ./lib",
45
+ "dev": "cross-env NODE_ENV=development rollup -c --watch",
46
+ "publish-packages": "semantic-release --repository-url git@github.com:solana-foundation/solana-web3.js.git",
47
+ "test:lint": "eslint src/ test/ --ext .js,.ts",
48
+ "test:lint:fix": "eslint src/ test/ --fix --ext .js,.ts",
49
+ "test:live-with-test-validator": "start-server-and-test './scripts/start-shared-test-validator.sh' http://127.0.0.1:8899/health test:live",
50
+ "test:live-with-test-validator:setup": "./scripts/setup-test-validator.sh",
51
+ "test:prettier": "prettier --check '{,{src,test}/**/}*.{j,t}s'",
52
+ "test:typecheck": "tsc --noEmit",
53
+ "test:unit": "cross-env NODE_ENV=test NODE_OPTIONS='--import tsx' mocha './test/**/*.test.ts'"
54
+ },
55
+ "dependencies": {
56
+ "@babel/runtime": "^7.25.0",
57
+ "@noble/curves": "^1.4.2",
58
+ "@noble/hashes": "^1.4.0",
59
+ "@solana/buffer-layout": "^4.0.1",
60
+ "@solana/codecs-numbers": "^2.1.0",
61
+ "agentkeepalive": "^4.5.0",
62
+ "bn.js": "^5.2.1",
63
+ "borsh": "^0.7.0",
64
+ "bs58": "^4.0.1",
65
+ "buffer": "6.0.3",
66
+ "fast-stable-stringify": "^1.0.0",
67
+ "jayson": "^4.1.1",
68
+ "node-fetch": "^2.7.0",
69
+ "rpc-websockets": "^9.0.2",
70
+ "superstruct": "^2.0.2"
71
+ }
72
+ }