-
Notifications
You must be signed in to change notification settings - Fork 263
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.41 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "near-api-js",
"description": "JavaScript library to interact with NEAR Protocol via RPC API",
"version": "7.2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/near/near-api-js.git"
},
"engines": {
"node": ">=20.18.3",
"pnpm": ">=10.4.1"
},
"packageManager": "pnpm@10.28.0",
"homepage": "https://github.com/near/near-api-js",
"type": "module",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./tokens": {
"import": "./lib/tokens/index.js",
"types": "./lib/tokens/index.d.ts"
},
"./tokens/mainnet": {
"import": "./lib/tokens/mainnet/index.js",
"types": "./lib/tokens/mainnet/index.d.ts"
},
"./tokens/testnet": {
"import": "./lib/tokens/testnet/index.js",
"types": "./lib/tokens/testnet/index.d.ts"
},
"./nep413": {
"import": "./lib/nep413/index.js",
"types": "./lib/nep413/index.d.ts"
},
"./seed-phrase": {
"import": "./lib/seed-phrase/index.js",
"types": "./lib/seed-phrase/index.d.ts"
},
"./rpc-errors": {
"import": "./lib/rpc-errors/index.js",
"types": "./lib/rpc-errors/index.d.ts"
}
},
"dependencies": {
"@noble/curves": "2.0.1",
"@noble/hashes": "2.0.1",
"@scure/base": "2.0.0",
"borsh": "2.0.0",
"is-my-json-valid": "2.20.6",
"near-seed-phrase": "0.2.1"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@biomejs/biome": "^2.3.11",
"@changesets/changelog-github": "0.5.2",
"@changesets/cli": "2.29.8",
"@commitlint/cli": "20.3.1",
"@commitlint/config-conventional": "20.3.1",
"@hey-api/openapi-ts": "^0.90.4",
"@types/node": "25.0.9",
"@vitest/coverage-v8": "4.0.17",
"@vitest/ui": "4.0.17",
"commitlint": "20.3.1",
"husky": "9.1.7",
"near-hello": "0.5.1",
"near-workspaces": "5.0.0",
"rimraf": "6.1.2",
"semver": "7.7.3",
"ts-node": "10.9.2",
"typedoc": "0.28.16",
"typescript": "5.9.3",
"vitest": "4.0.17"
},
"keywords": [],
"license": "(MIT AND Apache-2.0)",
"scripts": {
"compile": "tsc -p ./tsconfig.build.json",
"dev": "pnpm compile -w",
"prebuild": "pnpm clean",
"build": "tsc -p ./tsconfig.build.json",
"test": "vitest run test",
"typecheck": "tsc --noEmit -p ./tsconfig.json",
"lint": "biome check",
"prefuzz": "pnpm build",
"fuzz": "jsfuzz test/fuzz/borsh-roundtrip.js test/fuzz/corpus/",
"clean": "pnpm rimraf lib",
"check-exports": "attw --pack . --ignore-rules cjs-resolves-to-esm no-resolution",
"docs:generate": "typedoc",
"autoclave": "rimraf lib && rimraf node_modules && rimraf coverage && rimraf node_modules && rimraf e2e/node_modules && rimraf e2e/coverage && rimraf e2e/tests/node_modules",
"release": "changeset publish",
"rpc:generate": "pnpm openapi-ts",
"postrpc:generate": "biome check --fix"
},
"files": [
"lib",
"dist"
],
"author": "NEAR Inc",
"sideEffects": false,
"resolutions": {
"near-sandbox": "0.0.18"
}
}