-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.7 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
54
55
56
{
"name": "@tremor/tinybird-utils",
"version": "0.0.1",
"description": "Utilities to fetch data from Tinybird.",
"main": "dist/index.cjs",
"module": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c",
"publish:patch": "npm run build && npm version patch && npm publish",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"**/*.{ts, tsx}\"",
"lint:fix": "eslint --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mitrotasios/tinybird-utils.git"
},
"author": "tremor",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/mitrotasios/tinybird-utils/issues"
},
"types": "dist/index.d.ts",
"homepage": "https://github.com/mitrotasios/tinybird-utils#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@types/react": "^18.0.37",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"prettier": "2.8.7",
"react": "^18.2.0",
"swr": "^2.1.3",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"rollup": "^2.70.2",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript-paths": "^1.3.1"
},
"peerDependencies": {
"react": "^18.0.0",
"swr": "^2.0.0"
}
}