-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.14 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
{
"name": "flowtoken-svelte-monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "bun run --cwd packages/flowtoken-svelte build",
"build:example": "bun run build && bun run --cwd examples/async-agent build",
"dev:example": "bun run build && bun run --cwd examples/async-agent dev",
"check": "bun run --cwd packages/flowtoken-svelte check-types && bun run build && bun run --cwd examples/async-agent check",
"lint": "bun run --cwd packages/flowtoken-svelte check-types",
"test": "bun test packages/flowtoken-svelte",
"format": "prettier --check ."
},
"overrides": {
"nanoid": "^3.3.17",
"cookie": "^0.7.2"
},
"devDependencies": {
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^4.1.1"
},
"packageManager": "bun@1.3.14",
"engines": {
"node": ">=18"
},
"author": "Max Carter",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/undivisible/flowtoken-svelte.git"
},
"keywords": [
"svelte",
"markdown",
"streaming",
"animation",
"ai",
"flowtoken"
]
}