-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.83 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.83 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"$schema": "http://json.schemastore.org/package.json",
"name": "@xyo-network/xl1-samples-nodejs",
"version": "1.0.0",
"description": "XYO Layer One Protocol Sample Code [Node]",
"homepage": "https://xyo.network",
"bugs": {
"url": "git+https://github.com/XYOracleNetwork/xl1-issues/issues",
"email": "support@xylabs.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XYOracleNetwork/xl1-samples-nodejs.git"
},
"license": "LGPL-3.0-only",
"sideEffects": false,
"type": "module",
"scripts": {
"build": "tsc && eslint",
"compile": "tsc",
"lint": "eslint",
"check-node-version": "node ./scripts/check-node-version.mjs",
"start": "node ./scripts/check-node-version.mjs && tsx ./src/helloWorldRunner.ts",
"start-sample": "node ./scripts/check-node-version.mjs && tsx ./src/index.ts",
"updo": "npx npm-check-updates -i"
},
"dependencies": {
"@xylabs/assert": "5.0.65",
"@xylabs/delay": "5.0.65",
"@xylabs/tsconfig": "7.3.2",
"@xylabs/typeof": "5.0.65",
"@xyo-network/payload-builder": "5.3.2",
"@xyo-network/wallet": "5.3.2",
"@xyo-network/xl1-sdk": "1.21.10",
"dotenv": "17.2.3",
"zod": "4.3.6"
},
"devDependencies": {
"@types/node": "25.2.0",
"@xylabs/eslint-config-flat": "7.3.2",
"@xyo-network/account-model": "5.3.2",
"@xyo-network/payload-model": "5.3.2",
"@xyo-network/xl1-cli": "1.19.6",
"eslint": "9.39.2",
"eslint-import-resolver-typescript": "4.4.4",
"npm-check-updates": "19.3.2",
"tsx": "4.21.0",
"typedoc": "0.28.16",
"typedoc-plugin-markdown": "4.9.0",
"typescript": "5.9.3"
},
"engines": {
"node": ">=22.0.0 <23.0.0 || >=24.0.0 <25.0.0"
},
"volta": {
"node": "22.5.1",
"yarn": "4.12.0",
"npm": "10.9.2"
},
"publishConfig": {
"access": "restricted"
}
}