-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "stately-sky-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"repository": "https://github.com/statelyai/sky",
"author": "Stately Team",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-typescript": "^7.24.7",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@manypkg/cli": "^0.21.4",
"@preconstruct/cli": "^2.8.7",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"typescript": "^5.5.3"
},
"scripts": {
"preinstall": "node ./scripts/ensure-yarn.js",
"postinstall": "manypkg check && preconstruct dev",
"build": "preconstruct build",
"fix": "manypkg fix",
"typecheck": "tsc",
"changeset": "changeset",
"release": "changeset publish",
"version": "changeset version",
"copy-sky": "cp -r packages/sky-core/ ../sky-starter-app/node_modules/@statelyai/sky",
"copy-sky-react": "cp -r packages/sky-react/ ../sky-starter-app/node_modules/@statelyai/sky-react",
"dev": "yarn build && yarn copy-sky && yarn copy-sky-react"
},
"manypkg": {
"defaultBranch": "main"
},
"preconstruct": {
"packages": [
"packages/*"
],
"exports": {
"importConditionDefaultExport": "default"
},
"___experimentalFlags_WILL_CHANGE_IN_PATCH": {
"importsConditions": true
}
}
}