-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.62 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
{
"name": "@libertai/libertai-js",
"version": "0.0.10",
"description": "In-browser SDK for interacting with LibertAI Decentralized AI Network",
"keywords": [],
"type": "module",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./lib/*": "./lib/*",
"./*": "./lib/*",
"./package.json": "./package.json"
},
"types": "lib/index.d.ts",
"typesVersions": {
"*": {
"lib/index.d.ts": [
"lib/index.d.ts"
],
"lib/*": [
"lib/*"
],
"*": [
"lib/*"
]
}
},
"files": [
"lib",
"dist",
"README.md",
"LICENSE",
"package.json",
"docs"
],
"author": "Alie <[email protected]>",
"contributors": [
{
"name": "Alex Miller",
"email": "[email protected]"
},
{
"name": "Reza Rahemtola",
"email": "[email protected]"
}
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"lint": "yarn eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"prebuild": "rimraf dist",
"build": "tsc && yarn run build:minified",
"build:minified": "node scripts/build-minified.js",
"start": "tsc -w",
"prepare": "yarn build"
},
"dependencies": {
"axios": "^1.7.3"
},
"devDependencies": {
"@types/node": "^20.14.14",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}