-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.37 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
52
53
{
"name": "@sigmacomputing/plugin",
"version": "1.0.6",
"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": "[email protected]",
"url": "https://github.com/sigmacomputing/plugin/issues"
},
"packageManager": "[email protected]",
"files": [
"dist/*"
],
"typesVersions": {
"*": {
"react": [
"dist/react/index.d.ts"
]
}
},
"scripts": {
"build": "yarn tsc --build tsconfig.build.json",
"build:watch": "yarn build --watch",
"format": "prettier --write 'src/**/*.{ts,tsx}' 'jest.config.ts'",
"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",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@jest/types": "^27.5.1",
"@types/jest": "^27.5.1",
"@types/node": "^18.7.14",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"jest": "^27.5.1",
"jest-watch-typeahead": "^2.1.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^27.1.4",
"typescript": "^4.8.2"
}
}