-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
72 lines (72 loc) · 2.28 KB
/
package.json
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
{
"name": "root",
"version": "1.4.0",
"description": "Typescript SDK for Restate",
"author": "Restate Developers",
"license": "MIT",
"email": "code@restate.dev",
"homepage": "/~https://github.com/restatedev/sdk-typescript#readme",
"private": true,
"repository": {
"type": "git",
"url": "git+/~https://github.com/restatedev/sdk-typescript.git"
},
"bugs": {
"url": "/~https://github.com/restatedev/sdk-typescript/issues"
},
"workspaces": [
"packages/restate-sdk-core",
"packages/restate-sdk",
"packages/restate-sdk-cloudflare-workers",
"packages/restate-sdk-clients",
"packages/restate-sdk-examples",
"packages/restate-sdk-testcontainers",
"packages/restate-e2e-services"
],
"type": "module",
"scripts": {
"build": "npm run build -ws --if-present",
"test": "npm run test -ws --if-present",
"lint": "npm run lint -ws --if-present",
"format": "npm run format -ws --if-present",
"format-check": "npm run format-check -ws --if-present",
"verify": "npm run verify -ws --if-present",
"clean": "rm -rf packages/restate-sdk/dist && rm -rf packages/restate-sdk-cloudflare-workers/dist && rm -rf packages/restate-sdk-examples/dist && rm -rf packages/restate-sdk-ingress/dist && rm -rf packages/restate-e2e-services/dist && rm -rf packages/restate-sdk-core/dist"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
"@release-it-plugins/workspaces": "^4.2.0",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-require-extensions": "^0.1.3",
"prettier": "^2.8.4",
"release-it": "^17.3.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0",
"wasm-pack": "^0.13.1",
"wasm-pack-inline": "^0.1.2"
},
"engines": {
"node": ">= 18.13"
},
"publishConfig": {
"@restatedev:registry": "https://registry.npmjs.org",
"include-workspace-root": false
},
"release-it": {
"plugins": {
"@release-it-plugins/workspaces": true
},
"git": {
"pushRepo": "/~https://github.com/restatedev/sdk-typescript.git"
},
"github": {
"release": true
},
"npm": false
}
}