-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
74 lines (74 loc) · 2.13 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "react-intl-currency-input",
"version": "0.3.3",
"description": "A React component for i18n currency input using the Intl API.",
"type": "module",
"main": "index.cjs",
"module": "index.js",
"types": "index.d.ts",
"scripts": {
"start:app": "vite app --port 3000 --host 0.0.0.0 --open",
"lint": "tsc",
"preview:app": "vite preview app --outDir $PWD/dist/app --port 3000 --host 0.0.0.0 --open",
"build:all": "npm run build:lib && npm run build:app",
"build:app": "rm -rf dist/app && vite build app --outDir $PWD/dist/app --minify",
"build:lib": "rm -rf dist/lib && tsup lib/index.tsx --out-dir dist/lib --format cjs,esm --dts",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"tsup": "^6.7.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/big.js": "^6.1.6",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@types/react-syntax-highlighter": "^15.5.6",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^3.1.0",
"big.js": "^6.2.1",
"eslint": "^8.37.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react": "^7.32.2",
"jsdom": "^21.1.1",
"typescript": "^5.0.3",
"vite": "^4.2.1",
"vitest": "^0.29.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thiagozanetti/react-intl-currency-input.git"
},
"keywords": [
"react",
"react 18",
"react-hooks",
"esnext",
"intl",
"currency",
"component",
"input",
"vite"
],
"author": "Thiago Zanetti <thiago.project@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thiagozanetti/react-intl-currency-input/issues"
},
"homepage": "https://github.com/thiagozanetti/react-intl-currency-input#readme",
"engines": {
"node": "18",
"npm": "9"
},
"workspaces": [
"app/*",
"lib/*"
]
}