forked from AIGNE-io/aigne-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.29 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
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
{
"name": "ai-kit",
"private": true,
"version": "0.2.13",
"workspaces": [
"blocklets/*",
"packages/*"
],
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
"scripts": {
"dev": "pnpm -F ai-kit dev",
"bundle": "pnpm build:libs && pnpm -F ai-kit bundle",
"lint": "pnpm -r run lint",
"build": "pnpm build:libs && pnpm -F ai-kit build",
"build:libs": "pnpm -F @blocklet/aigne-hub build",
"clean": "pnpm -r run clean",
"bump-version": "zx scripts/bump-version.mjs",
"update:deps": "npx -y taze latest -r -w -n '/blocklet|abtnode|arcblock|ocap|aigne/' && pnpm install && pnpm dedupe",
"postinstall": "npx simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{mjs,js,jsx,ts,tsx}": [
"prettier --write",
"eslint"
],
"*.{css,less,scss,json,graphql}": [
"prettier --write"
]
},
"importSort": {
".js, .jsx, .mjs": {
"parser": "babylon",
"style": "module"
},
".ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"devDependencies": {
"@arcblock/eslint-config": "^0.3.3",
"@arcblock/eslint-config-ts": "^0.3.3",
"bumpp": "^9.5.1",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.2.1",
"import-sort-style-module": "^6.0.0",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"prettier-plugin-import-sort": "^0.0.7",
"rimraf": "^5.0.10",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.5.4",
"zx": "^8.1.4"
},
"resolutions": {
"@arcblock/did": "^1.21.0",
"@arcblock/did-auth": "^1.21.0",
"@arcblock/did-ext": "^1.21.0",
"@arcblock/did-util": "^1.21.0",
"@arcblock/event-hub": "^1.21.0",
"@arcblock/jwt": "^1.21.0",
"@arcblock/validator": "^1.21.0",
"@arcblock/ws": "^1.21.0",
"@blocklet/constant": "^1.16.46",
"@blocklet/js-sdk": "^1.16.46",
"@blocklet/logger": "^1.16.46",
"@blocklet/sdk": "^1.16.46",
"@ocap/asset": "^1.21.0",
"@ocap/client": "^1.21.0",
"@ocap/types": "^1.21.0",
"@ocap/util": "^1.21.0",
"@ocap/wallet": "^1.21.0",
"axios": "^1.7.4",
"express": "^4.21.2",
"nanoid": "^3.3.7",
"vite-tsconfig-paths": "5.1.4"
}
}