-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 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
{
"name": "workspaces",
"version": "0.0.1",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"packages/management-sdk/examples/*",
"packages/react-sdk/dev/*",
"packages/react-native-sdk/dev/*",
"packages/openfeature-browser-provider/example",
"packages/node-sdk/examples/express"
],
"scripts": {
"changeset": "changeset",
"dev": "lerna run dev --parallel",
"build": "lerna run build --stream",
"test:ci": "lerna run test:ci --stream",
"test": "lerna run test --stream",
"format": "yarn fmt:fix && yarn lint:fix",
"lint": "yarn oxlint .",
"lint:ci": "yarn oxlint .",
"version-packages": "changeset version && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install",
"release-packages": "yarn build && yarn release",
"release": "changeset publish",
"docs": "./docs.sh",
"lint:fix": "yarn oxlint --fix .",
"fmt": "yarn oxfmt --check .",
"fmt:fix": "yarn oxfmt --write .",
"postinstall": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.29.6",
"husky": "^9.1.7",
"lerna": "^8.1.3",
"lint-staged": "^16.2.7",
"oxfmt": "^0.27.0",
"oxlint": "^1.42.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"typedoc": "0.27.6",
"typedoc-plugin-frontmatter": "^1.1.2",
"typedoc-plugin-markdown": "^4.4.2",
"typedoc-plugin-mdn-links": "^4.0.7",
"typescript": "^5.7.3"
},
"resolutions": {
"react": "19.1.0",
"react-dom": "19.1.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs,mts,cts,vue}": [
"oxfmt --write",
"oxlint --fix"
],
"*.{json,md,yml,yaml,css,html}": [
"oxfmt --write"
]
},
"packageManager": "yarn@4.10.3"
}