-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.31 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
{
"name": "@sigmacomputing/plugin",
"version": "1.2.0",
"description": "Sigma Computing Plugin Client SDK",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch",
"format": "yarn g:format",
"lint": "yarn g:lint",
"publish": "yarn g:publlish",
"test": "vitest run",
"test:watch": "vitest",
"types": "yarn g:types"
},
"dependencies": {
"dequal": "^2.0.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"tsdown": "^0.21.10",
"vitest": "^4.1.5"
},
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.cts",
"unpkg": "./dist/umd/sigmacomputing-plugin.umd.js",
"jsdelivr": "./dist/umd/sigmacomputing-plugin.umd.js",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"src/**/*",
"!src/**/__tests__/**/*"
],
"publishConfig": {
"access": "public"
}
}