-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.06 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
{
"name": "ai",
"version": "1.0.0",
"homepage": "https://github.com/bitcoinerlab/ai",
"author": "Jose-Luis Landabaso",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prettier": "@bitcoinerlab/configs/prettierConfig.json",
"eslintConfig": {
"extends": "./node_modules/@bitcoinerlab/configs/eslintConfig"
},
"jest": {
"preset": "@bitcoinerlab/configs"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore --ext .ts src/ test/",
"build:test": "tsc --project ./node_modules/@bitcoinerlab/configs/tsconfig.test.json",
"build:src": "tsc --project ./node_modules/@bitcoinerlab/configs/tsconfig.src.json",
"build": "npm run build:src && npm run build:test",
"test": "npm run lint && npm run build && jest"
},
"files": [
"dist"
],
"dependencies": {
"@bitcoinerlab/descriptors": "^2.2.1",
"@bitcoinerlab/secp256k1": "^1.2.0",
"bip39": "^3.1.0",
"dotenv": "^16.4.7",
"openai": "^4.85.1"
},
"devDependencies": {
"@bitcoinerlab/configs": "github:bitcoinerlab/configs"
}
}