-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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
{
"name": "react-vlibras-plugin",
"private": false,
"version": "0.1.3",
"type": "module",
"description": "A library for integrating VLibras into React applications.",
"author": "Lucas Ferreira <lucasferreiralimax@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/react-a11y/react-vlibras-plugin.git"
},
"bugs": {
"url": "https://github.com/react-a11y/react-vlibras-plugin/issues"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:module": "tsc -p tsconfig.module.json && npm run rename && npm run minify && npm run postbuild",
"rename": "mv dist/ReactVLibras.js dist/react-vlibras-plugin.js",
"minify": "esbuild dist/**/*.js --minify --outdir=dist --allow-overwrite ",
"postbuild": "node scripts/generate-dist.js",
"lint": "eslint .",
"preview": "vite preview",
"publish": "cd dist && npm pub && cd .."
},
"dependencies": {
"nucleus-react-js": "^0.0.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-vlibras-plugin": "^0.1.3"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/node": "^22.10.10",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.19.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"jsonminify": "^0.4.2",
"sass-embedded": "^1.83.4",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vite": "^5.4.14"
},
"keywords": [
"react",
"vlibras",
"accessibility",
"a11y"
]
}