-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.87 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
{
"name": "replit-extensions-client",
"description": "Replit Extensions Monorepo (All Clients)",
"scripts": {
"tester": "cd modules/tester && pnpm dev",
"dev": "cd modules/dev && pnpm dev",
"lint": "turbo run lint",
"lint:check": "turbo run lint:check",
"type:check": "turbo run type:check",
"test:build": "turbo run test:build",
"build": "turbo run build",
"clean": "turbo run clean",
"publish:extensions": "turbo run lint:check type:check build && cd modules/extensions && pnpm publish",
"publish:react": "turbo run lint:check type:check build && cd modules/extensions-react && pnpm publish",
"publish:extensions:beta": "turbo run lint:check type:check build && cd modules/extensions && pnpm publish --tag beta",
"publish:react:beta": "turbo run lint:check type:check build && cd modules/extensions-react && pnpm publish --tag beta",
"test:extensions": "cd modules/extensions && turbo run build test:build --log-prefix=none",
"test:react": "cd modules/extensions-react && turbo run build test:build --log-prefix=none",
"test": "pnpm test:extensions && pnpm test:react"
},
"keywords": [
"extensions",
"api",
"client",
"replit"
],
"author": "Replit",
"license": "MIT",
"engines": {
"node": ">=18",
"pnpm": ">=6"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@replit/extensions": "workspace:*",
"@testing-library/jest-dom": "^5.17.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.1",
"@types/react": "^18.2.0",
"@vitejs/plugin-react": "^4.0.4",
"esbuild": "^0.15.18",
"esbuild-jest": "^0.5.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^6.7.0",
"turbo": "^1.10.14",
"typedoc": "^0.24.8",
"typescript": "^4.9.5",
"vite": "^4.4.9"
}
}