-
Notifications
You must be signed in to change notification settings - Fork 251
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "@near-js/utils",
"version": "1.1.0",
"description": "Common methods and constants for the NEAR API JavaScript client",
"main": "lib/esm/index.js",
"type": "module",
"scripts": {
"build": "pnpm compile:esm && pnpm compile:cjs",
"compile:esm": "tsc -p tsconfig.json",
"compile:cjs": "tsc -p tsconfig.cjs.json && cjsify ./lib/commonjs",
"lint": "eslint -c ../../.eslintrc.ts.yml src/**/*.ts test/**/*.ts --no-eslintrc",
"lint:fix": "eslint -c ../../.eslintrc.ts.yml src/**/*.ts test/**/*.ts --no-eslintrc --fix",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@near-js/types": "workspace:*",
"@scure/base": "^1.2.0",
"depd": "2.0.0",
"mustache": "4.0.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "20.0.0",
"build": "workspace:*",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"tsconfig": "workspace:*",
"typescript": "5.4.5"
},
"files": [
"lib"
],
"exports": {
"require": "./lib/commonjs/index.cjs",
"import": "./lib/esm/index.js"
}
}