-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 877 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 877 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
30
31
32
33
34
35
36
37
38
39
40
41
{
"version": "0.1.0",
"description": "APITable widget to import data from airtable",
"engines": {
"node": ">=8.x"
},
"keywords": [
"AITable",
"widgets",
"AITable widgets"
],
"main": "./dist/index",
"module": "./dist/index",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"start": "widget-cli start",
"release": "widget-cli release"
},
"peerDependencies": {
"react": "16.14.0",
"react-dom": "16.14.0"
},
"dependencies": {
"@apitable/components": "latest",
"@apitable/icons": "latest",
"@apitable/widget-sdk": "latest",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"lodash": "^4.17.21",
"query-string": "^7.1.1",
"typescript": "4.1.2"
},
"devDependencies": {
"@types/node": "^16.4.10",
"ts-toolbelt": "^9.6.0"
}
}