forked from google/labs-prototypes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 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
{
"private": true,
"version": "0.0.1",
"description": "Google Labs repo for rapid prototyping",
"type": "module",
"scripts": {
"sync": "npm i && npm run clean:build && npm run build",
"test": "wireit",
"build": "wireit",
"lint": "wireit",
"deep-clean:build": "rm -rf node_modules seeds/*/node_modules package-lock.json && npm run sync",
"clean:build": "rimraf -g seeds/*/dist seeds/*/.wireit",
"ci": "npm ci",
"check:format": "prettier --check --config .prettierrc seeds/*/src/**/*.ts",
"ci:local": "wireit"
},
"wireit": {
"build": {
"dependencies": [
"./seeds/chunker:build",
"./seeds/discovery-types:build",
"./seeds/gemini-guide:build",
"./seeds/palm-lite:build"
]
},
"test": {
"dependencies": [
"./seeds/chunker:test",
"./seeds/discovery-types:test",
"./seeds/palm-lite:test"
]
},
"lint": {
"dependencies": [
"./seeds/chunker:lint",
"./seeds/discovery-types:lint",
"./seeds/palm-lite:lint"
]
},
"ci:local": {
"dependencies": [
"build",
"check:format",
"lint",
"test"
]
}
},
"keywords": [],
"author": "Google Labs Team",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^18.19.31",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"ava": "^5.3.1",
"eslint": "^8.57.0",
"npm-ci": "^0.0.2",
"rimraf": "^5.0.5",
"typescript": "^5.4.5",
"wireit": "^0.14.4"
},
"workspaces": [
"./core/*",
"./seeds/*"
]
}