-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.39 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
{
"name": "ton-api",
"private": true,
"version": "0.4.0",
"type": "module",
"scripts": {
"postinstall": "patch-package",
"test": "vitest run tests/",
"test:client": "vitest run tests/client",
"test:adapters": "vitest run tests/adapters",
"test:watch": "vitest",
"build": "turbo run build",
"build:client": "turbo run build --filter=@ton-api/client",
"build:adapters": "turbo run build --filter=@ton-api/ton-adapter",
"build:watch": "turbo run build:watch",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"clean": "turbo run clean && rimraf node_modules"
},
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@jscutlery/semver": "^4.2.0",
"@ton/core": "^0.60.1",
"@ton/crypto": "^3.3.0",
"@ton/ton": "^15.2.1",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.0.0",
"patch-package": "^8.0.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"tsup": "^8.0.1",
"turbo": "^2.4.4",
"typescript": "^5.7.3",
"vitest": "^3.0.9"
},
"workspaces": [
"packages/**"
],
"packageManager": "npm@10.9.0"
}