-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.48 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
{
"name": "@sigmacomputing/plugin",
"version": "1.1.1",
"description": "Sigma Computing Plugin Client API",
"license": "MIT",
"homepage": "https://github.com/sigmacomputing/plugin",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/sigmacomputing/plugin.git"
},
"bugs": {
"email": "support@sigmacomputing.com",
"url": "https://github.com/sigmacomputing/plugin/issues"
},
"packageManager": "yarn@4.13.0",
"files": [
"dist/**/*"
],
"typesVersions": {
"*": {
"react": [
"dist/react/index.d.ts"
]
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "yarn tsc --build tsconfig.build.json",
"build:watch": "yarn build --watch",
"format": "yarn oxfmt",
"lint": "yarn oxlint",
"precommit": "lint-staged",
"prepublish": "yarn build",
"test": "jest --ci",
"test:watch": "yarn test --watch"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@jest/types": "^27.5.1",
"@types/jest": "^27.5.1",
"@types/node": "^18.7.14",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"jest": "^27.5.1",
"jest-watch-typeahead": "^2.1.1",
"lint-staged": "^13.0.3",
"oxfmt": "^0.38.0",
"oxlint": "^1.53.0",
"oxlint-tsgolint": "^0.16.0",
"ts-jest": "^27.1.4",
"typescript": "^4.8.2"
}
}