forked from framesjs/frames.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.2 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
{
"name": "framesjs-monorepo",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "FJS_MONOREPO=true turbo dev --filter=framesjs-starter... --filter=debugger...",
"dev:custom-redirects": "turbo dev --filter=custom-redirects...",
"dev:utils-starter": "turbo dev --filter=utils-starter...",
"dev:all": "turbo dev",
"lint": "turbo lint",
"publish-packages": "turbo run build lint && changeset version && changeset publish && git push --follow-tags origin main",
"publish-canary": "turbo run build lint && cd ./packages/frames.js && yarn publish --tag canary && git push --follow-tags origin main",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "jest --watch"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@framesjs/eslint-config": "*",
"@framesjs/typescript-config": "*",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"nock": "beta",
"prettier": "^3.1.1",
"ts-jest": "^29.1.2",
"turbo": "^1.12.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"docs",
"examples/*",
"packages/*"
],
"version": "0.3.0-canary.0"
}