-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
108 lines (108 loc) · 2.31 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@google-labs/palm-kit",
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
},
"version": "0.1.6",
"description": "A Breadboard Kit with nodes to access PaLM APIs.",
"main": "./dist/src/index.js",
"exports": "./dist/src/index.js",
"types": "dist/src/index.d.ts",
"type": "module",
"scripts": {
"prepack": "npm run build",
"build": "wireit",
"test": "wireit",
"lint": "wireit"
},
"wireit": {
"build": {
"dependencies": [
"../breadboard:build",
"build:tsc"
]
},
"build:tsc": {
"command": "tsc -b --pretty",
"env": {
"FORCE_COLOR": "1"
},
"dependencies": [
"../breadboard:build:tsc"
],
"files": [
"src/**/*.ts",
"tests/**/*.ts",
"tsconfig.json",
"../../core/tsconfig/base.json"
],
"output": [
"dist/"
],
"clean": "if-file-deleted"
},
"test": {
"command": "ava",
"env": {
"FORCE_COLOR": "1"
},
"dependencies": [
"build:tsc"
],
"files": [],
"output": []
},
"lint": {
"command": "eslint . --ext .ts",
"env": {
"FORCE_COLOR": "1"
},
"files": [
".eslintrc",
"../../.eslintrc.json"
],
"output": []
}
},
"repository": {
"directory": "packages/palm-kit",
"type": "git",
"url": "git+https://github.com/breadboard-ai/breadboard.git"
},
"files": [
"dist/src"
],
"ava": {
"timeout": "30s",
"files": [
"tests/**/*.ts"
],
"workerThreads": false,
"typescript": {
"rewritePaths": {
"./": "dist/"
},
"compile": false
}
},
"keywords": [],
"author": "Google Labs Team",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/breadboard-ai/breadboard/issues"
},
"homepage": "https://github.com/breadboard-ai/breadboard#readme",
"devDependencies": {
"@ava/typescript": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@types/node": "^22.0.0",
"ava": "^5.2.0",
"typescript": "^5.6.3",
"@google-labs/tsconfig": "^0.0.1"
},
"dependencies": {
"@google-labs/breadboard": "^0.29.0",
"@google-labs/palm-lite": "^0.0.3"
}
}