This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.07 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
69
70
71
72
73
74
75
{
"sideEffects": false,
"type": "module",
"version": "1.3.3-dev.0",
"author": "soda <[email protected]>",
"contributors": [
"Marc Fornós <[email protected]>",
"Xueying Wang <[email protected]>"
],
"bugs": "https://github.com/sodazone/ocelloids-sdk/issues",
"description": "Software development kit for Polkadot and Substrate based networks.",
"engines": {
"node": ">=18.14"
},
"homepage": "https://github.com/sodazone/ocelloids-sdk#readme",
"jest": {
"collectCoverage": true,
"coveragePathIgnorePatterns": [
".*/dist"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.tsx?$": [
"@swc/jest"
]
}
},
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/sodazone/ocelloids.git"
},
"workspaces": [
"packages/**/*",
"tools",
"examples"
],
"scripts": {
"build": "yarn workspaces foreach -pt --exclude @sodazone/ocelloids-sdk-tools --exclude @sodazone/ocelloids-sdk-examples run build",
"build:tools": "yarn workspace @sodazone/ocelloids-sdk-tools run build",
"build:examples": "yarn workspace @sodazone/ocelloids-sdk-examples run build",
"docs": "typedoc",
"lint": "biome check --write packages/**/src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"bump:version": "yarn workspaces foreach version",
"license:fix": "docker run -it --rm -v $(pwd):/github/workspace apache/skywalking-eyes header fix"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@biomejs/biome": "1.9.4",
"@swc/core": "^1.9.2",
"@swc/jest": "^0.2.37",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.1",
"esbuild": "^0.24.0",
"jest": "^29.7.0",
"tsup": "^8.3.5",
"typedoc": "^0.26.11",
"typescript": "^5.6.3"
},
"overrides": {
"word-wrap": "1.2.4"
},
"resolutions": {
"web-worker": "1.2.0"
},
"packageManager": "[email protected]",
"stableVersion": "1.3.2"
}