-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.11 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
86
87
88
89
90
91
{
"name": "assembly-kit",
"version": "0.0.7",
"description": "TypeScript SDK for the Assembly platform",
"homepage": "https://github.com/madebyoutside/assembly-kit#readme",
"bugs": {
"url": "https://github.com/madebyoutside/assembly-kit/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/madebyoutside/assembly-kit.git"
},
"files": [
"dist",
"CLAUDE.md"
],
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./bridge-ui": "./dist/bridge-ui/index.mjs",
"./client": "./dist/client/index.mjs",
"./errors": "./dist/errors/index.mjs",
"./logger": "./dist/logger/index.mjs",
"./schemas": "./dist/schemas/index.mjs",
"./token": "./dist/token/index.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"test": "vp test",
"check": "vp check",
"prepublishOnly": "vp run build",
"prepare": "vp config"
},
"dependencies": {
"ky": "^2.0.2",
"p-throttle": "^8.1.0"
},
"devDependencies": {
"@assembly-js/app-bridge": "^1.4.0",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@typescript/native-preview": "7.0.0-dev.20260505.1",
"pino": "^10.3.1",
"pino-pretty": "^13.1.2",
"react": "^19.2.5",
"typescript": "^6.0.3",
"vite-plus": "^0.1.20",
"zod": "^4.4.3"
},
"peerDependencies": {
"@assembly-js/app-bridge": "^1.1.1",
"pino": ">=9",
"pino-pretty": ">=11",
"react": ">=18",
"typescript": ">=5",
"zod": ">=4"
},
"peerDependenciesMeta": {
"@assembly-js/app-bridge": {
"optional": true
},
"pino": {
"optional": true
},
"pino-pretty": {
"optional": true
},
"react": {
"optional": true
},
"typescript": {
"optional": true
},
"zod": {
"optional": true
}
},
"packageManager": "bun@1.3.12",
"pnpm": {
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
}
}
}