-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.43 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.43 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@ubidots/react-html-canvas",
"version": "0.2.12",
"description": "React library to interact with Ubidots Dashboards from HTML Canvas widgets (Provider + hooks + actions)",
"license": "MIT",
"author": "Ubidots",
"private": false,
"type": "module",
"main": "dist/react-html-canvas.cjs.js",
"module": "dist/react-html-canvas.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-html-canvas.es.js",
"require": "./dist/react-html-canvas.cjs.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"build:watch": "vite build --watch",
"dev": "vite",
"serve": "python3 -m http.server 8080 --directory dist",
"serve:tunnel": "pnpm run serve & cloudflared tunnel --url http://localhost:8080",
"dev:cdn": "concurrently \"pnpm run build:watch\" \"pnpm run serve\"",
"dev:cdn:tunnel": "concurrently \"pnpm run build:watch\" \"pnpm run serve:tunnel\"",
"test": "vitest run --reporter=verbose",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:coverage:ui": "vitest --coverage --ui",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "rimraf dist",
"prepublishOnly": "pnpm run clean && pnpm run lint && pnpm run format:check && pnpm run build && pnpm run test && pnpm run typecheck",
"publish:dry": "pnpm publish --dry-run",
"publish:beta": "pnpm publish --tag beta",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"peerDependencies": {
"@ubidots/ubidots-javascript-library": ">=1.2.1",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@eslint/js": "9.33.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^24.3.0",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@ubidots/ubidots-javascript-library": "^1.2.1",
"@vitejs/plugin-react": "^5.0.1",
"@vitest/coverage-v8": "^3.2.4",
"concurrently": "9.2.1",
"eslint": "9.33.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"jsdom": "^26.1.0",
"prettier": "3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"rimraf": "^5.0.5",
"typescript": "^5.4.0",
"typescript-eslint": "8.40.0",
"vite": "^5.2.0",
"vite-plugin-dts": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"keywords": [
"ubidots",
"react",
"html-canvas",
"dashboard",
"widgets"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ubidots/react-html-canvas.git"
},
"bugs": {
"url": "https://github.com/ubidots/react-html-canvas/issues"
},
"homepage": "https://github.com/ubidots/react-html-canvas#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=16.0.0",
"pnpm": ">=8.0.0"
},
"pnpm": {
"overrides": {
"glob@>=10.2.0 <10.5.0": ">=10.5.0"
}
}
}