-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.87 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.87 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
{
"name": "prdkit",
"version": "0.1.0",
"main": "index.js",
"private": true,
"license": "MIT",
"scripts": {
"validate": "tsc --noEmit --project ./tsconfig.json",
"lint": "npx eslint src/**/*",
"lint-fix": "eslint --fix src/**/*.ts",
"hook-errors": "echo '\\x1b[31mThe build failed because a Forge UI hook is being used incorrectly. Forge UI hooks follow the same rules as React Hooks but have their own API definitions. See the Forge documentation for details on how to use Forge UI hooks.\n' && exit 1",
"deploy": "forge deploy",
"deploy:prod": "forge deploy -e production",
"install:prod": "forge install -e production -s prd-kit.atlassian.net",
"forge-install": "forge install",
"forge-install-jira": "forge install -p Jira -s prd-kit.atlassian.net -e byron-buckley",
"forge-upgrade-jira": "forge install --upgrade -s prd-kit.atlassian.net -e byron-buckley",
"postinstall": "npm run deploy",
"dev": "forge tunnel",
"test": "echo no tests",
"pretty": "prettier --write src/**/*.ts",
"prepare": "husky",
"list-models": "aws bedrock list-foundation-models --region=ap-southeast-2 --by-provider anthropic --query 'modelSummaries[*].modelId'"
},
"devDependencies": {
"@types/node": "14.18.63",
"@types/react": "^18.2.39",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"typescript": "^4.9.5"
},
"dependencies": {
"@anthropic-ai/bedrock-sdk": "^0.9.6",
"@anthropic-ai/sdk": "^0.19.0",
"@forge/api": "^3.8.1",
"@forge/bridge": "^3.5.0",
"@forge/react": "^10.4.0",
"@forge/resolver": "^1.5.37",
"react": "^18.3.1"
},
"engines": {
"node": ">=16 <=18"
},
"volta": {
"node": "18.19.0"
}
}