forked from near/near-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.92 KB
/
package.json
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
{
"name": "near-sdk-js",
"version": "0.5.0-1",
"description": "High Level JavaScript SDK for building smart contracts on NEAR",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/near/near-sdk-js.git"
},
"homepage": "https://github.com/near/near-sdk-js",
"keywords": [
"JS",
"JavaScript",
"NEAR",
"SDK",
"contract",
"smart",
"smart-contract"
],
"license": "(MIT AND Apache-2.0)",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"pretest": "yarn build",
"test": "yarn test:unit && yarn test:examples",
"lint": "eslint --fix .",
"format": "prettier --write .",
"test:unit": "yarn && cd tests && yarn && yarn build && yarn test && cd ..",
"test:examples": "yarn && cd examples && yarn && yarn build && yarn test && cd ..",
"postinstall": "cd cli && rm -rf deps && mkdir -p deps && cd deps && node ../post-install.js"
},
"bin": {
"near-sdk-js": "cli/cli.js"
},
"engines": {
"node": ">=14 <16.6.0 || >16.6.0"
},
"author": "Near Inc <hello@nearprotocol.com>",
"dependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-decorators": "^7.17.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.1",
"@scure/base": "^1.1.1",
"rollup": "^2.61.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"yargs": "^17.5.1"
},
"files": [
"cli",
"lib"
],
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.2",
"@types/babel__traverse": "^7.18.1",
"@types/node": "^17.0.38",
"@types/rollup": "^0.54.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"typescript": "^4.7.2"
}
}