-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.98 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.98 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
62
63
64
65
66
67
{
"name": "@sigmacomputing/plugin-sdk-root",
"version": "1.2.0",
"private": true,
"description": "Sigma Computing Plugin Client SDK",
"license": "MIT",
"homepage": "https://github.com/sigmacomputing/plugin",
"type": "module",
"packageManager": "yarn@4.13.0",
"repository": {
"type": "git",
"url": "https://github.com/sigmacomputing/plugin.git"
},
"bugs": {
"email": "support@sigmacomputing.com",
"url": "https://github.com/sigmacomputing/plugin/issues"
},
"scripts": {
"build": "yarn turbo build",
"bump": "tsx scripts/bump-version.ts",
"format": "yarn g:format",
"g:format": "yarn oxfmt",
"g:lint": "yarn oxlint --type-aware",
"g:publlish": "cd $INIT_CWD && yarn npm publish --tolerate-republish",
"g:types": "cd $INIT_CWD && yarn exec tsc -b --noEmit",
"g:syncpack": "yarn exec syncpack",
"lint": "yarn g:lint",
"precommit": "lint-staged",
"syncpack:fix": "yarn g:syncpack fix --dependency-types prod,dev",
"syncpack:lint": "yarn g:syncpack lint --dependency-types prod,dev",
"test": "yarn turbo test",
"types": "yarn turbo types && tsc --noEmit"
},
"devDependencies": {
"@actions/core": "^3.0.1",
"@arethetypeswrong/core": "^0.18.2",
"@inquirer/prompts": "^8.4.2",
"@testing-library/dom": "10.4.1",
"@testing-library/react": "16.3.2",
"@types/node": "^24.0.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/semver": "^7.7.1",
"@vitest/browser-playwright": "^4.1.5",
"lint-staged": "^16.4.0",
"oxfmt": "^0.38.0",
"oxlint": "^1.53.0",
"oxlint-tsgolint": "^0.16.0",
"playwright": "^1.49.0",
"publint": "^0.3.18",
"react": "19.2.5",
"react-dom": "19.2.5",
"semver": "^7.7.4",
"syncpack": "^14.3.1",
"tsdown": "^0.21.10",
"tsx": "^4.21.0",
"turbo": "^2.9.7",
"typescript": "^6.0.2",
"unplugin-unused": "^0.5.7",
"vitest": "^4.1.5"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}