forked from ston-fi/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
{
"name": "@ston-fi/sdk",
"version": "0.3.1",
"description": "Typescript SDK to interact with the Ston.fi DEX",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ston-fi/sdk.git"
},
"homepage": "https://github.com/ston-fi/sdk#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"prebuild": "npm install && rimraf dist && npm run lint && CI=true npm run test",
"build": "vite build",
"lint": "npm run lint:prettier",
"lint:fix": "npm run lint:prettier -- --write",
"lint:prettier": "prettier --check ./src",
"test": "npm run test:typecheck && npm run test:unit-test",
"test:typecheck": "tsc --noEmit",
"test:unit-test": "vitest",
"test:coverage": "npm run test:unit-test -- --coverage"
},
"devDependencies": {
"@types/bn.js": "5.1.1",
"@vitest/coverage-c8": "^0.25.8",
"prettier": "^2.8.1",
"rimraf": "^4.1.2",
"typescript": "4.8.4",
"vite": "4.0.0",
"vite-plugin-dts": "1.7.1",
"vitest": "0.25.6"
},
"peerDependencies": {
"tonweb": "~0.0.39"
}
}