-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.69 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.69 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
{
"name": "@restatedev/sdk-typescript",
"version": "1.9.0",
"description": "Typescript SDK for Restate",
"author": "Restate Developers",
"email": "code@restate.dev",
"license": "MIT",
"homepage": "https://github.com/restatedev/sdk-typescript#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/restatedev/sdk-typescript.git"
},
"bugs": {
"url": "https://github.com/restatedev/sdk-typescript/issues"
},
"private": true,
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"clean": "turbo run clean && rm -rf .turbo",
"clean:cache": "turbo daemon stop; sleep 1; rm -rf .turbo node_modules/.cache",
"build": "turbo run _build --filter=\"./packages/libs/*\"",
"build:all": "turbo run _build",
"dev": "pnpm --filter \"./packages/libs/*\" --parallel dev",
"test": "turbo run _test",
"test:watch": "vitest watch",
"lint": "turbo run lint",
"format": "prettier --write .",
"check:format": "prettier --check .",
"check:types": "turbo run _check:types",
"check:exports": "turbo run _check:exports",
"check:api": "turbo run _check:api",
"verify": "turbo run check:format lint _check:types _build _check:exports _check:api _test",
"verify-docs": "npx typedoc",
"build-docs": "pnpm build && npx typedoc",
"examples:dev": "bash -c 'pnpm --filter \"./packages/examples/${1:-node}\" dev' --",
"examples:start": "bash -c 'turbo run _start --filter=\"./packages/examples/${1:-node}...\"' --",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && pnpm changeset publish",
"new": "plop package",
"delete": "plop delete-package",
"add-entry": "plop add-entry",
"generate:configs": "node scripts/generate-example-configs.mjs",
"deps:check": "pnpm outdated",
"deps:update": "pnpm update --latest --recursive",
"build:core": "./.tools/build_core.sh",
"postbuild:core": "pnpm format"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.2",
"@eslint/json": "^0.13.2",
"@microsoft/api-extractor": "^7.58.0",
"@types/node": "^24.10.4",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^3.10.1",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.5.0",
"plop": "^4.0.4",
"prettier": "^3.7.4",
"tsdown": "^0.15.12",
"tsx": "^4.21.0",
"turbo": "^2.7.2",
"typedoc": "^0.28.15",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"vitest": "^3.2.4",
"wasm-pack": "^0.0.0",
"wasm-pack-inline": "^0.1.4"
},
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=20",
"pnpm": ">=10"
}
}