-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·37 lines (37 loc) · 1.02 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
{
"name": "open-frames-proxy",
"packageManager": "[email protected]",
"license": "MIT",
"private": true,
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"release": "yarn workspaces foreach --no-private --all npm publish --access public --tolerate-republish && changeset tag"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-vitest": "^0.3.22",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"workspaces": [
"packages/*",
"examples/*"
],
"dependencies": {
"turbo": "^1.12.4"
}
}