-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 825 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 825 Bytes
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
{
"name": "sei-js",
"version": "2.0.0",
"private": true,
"license": "MIT",
"scripts": {
"build:all": "pnpm -r run build",
"docs": "cd docs && pnpm dlx mint dev",
"release": "changeset publish && git push --follow-tags",
"release:internal": "pnpm build:all && pnpm changeset && pnpm changeset version --snapshot internal && pnpm changeset publish --no-git-tag --snapshot --tag internal",
"test:all": "pnpm -r run test",
"test:coverage": "pnpm -r 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",
"mint": "^4.1.57",
"rimraf": "^3.0.2",
"ts-jest": "^29.3.0",
"ts-node": "2.1.2",
"typescript": "^5.8.2"
},
"packageManager": "pnpm@9.0.0"
}