-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
33 lines (33 loc) · 1.05 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
{
"name": "sei-js",
"version": "2.0.0",
"private": true,
"license": "MIT",
"workspaces": ["packages/*"],
"scripts": {
"build:all": "yarn workspaces foreach --topological-dev --all run build",
"postinstall": "yarn update-submodules",
"update-submodules": "git submodule update --init --recursive",
"docs": "npx typedoc",
"release": "changeset publish && git push --follow-tags",
"release:internal": "yarn build:all && yarn changeset && yarn changeset version --snapshot internal && yarn changeset publish --no-git-tag --snapshot --tag internal",
"test:all": "yarn workspaces foreach --all run test",
"test:coverage": "yarn workspaces foreach --all run test --coverage"
},
"dependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.28.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.13",
"jest": "^29.7.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.3.0",
"ts-node": "2.1.2",
"typedoc": "^0.27.9",
"typedoc-material-theme": "^1.3.0",
"typescript": "^5.8.2"
},
"packageManager": "yarn@4.7.0"
}