-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.01 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
{
"name": "@transmitsecurity/riskid-reactjs-ts",
"version": "1.2.0",
"license": "SEE LICENSE IN LICENSE",
"module": "./dist/index.es.js",
"main": "./dist/index.cjs.js",
"repository": {
"type": "git",
"url": "git+https://github.com/TransmitSecurity/react-ts-riskid.git"
},
"homepage": "https://github.com/TransmitSecurity/react-ts-riskid/blob/main/package/README.md",
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js"
}
},
"types": "./dist/TSAccountProtectionProvider.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "vite build --watch",
"start:dev": "vite build --watch",
"start:prod": "vite preview --port 3000 --host 0.0.0.0",
"prebuild": "rm -rf ./dist",
"build": "vite build",
"prepack": "yarn build",
"lint": "echo 'TODO lint'",
"test": "echo 'TODO test'",
"ci-version": "echo $npm_package_version"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/node": "18.0.6",
"@types/react": "18.0.27",
"@vitejs/plugin-react": "1.1.4",
"better-npm-audit": "3.7.3",
"less": "4.1.2",
"prettier": "2.3.2",
"react": "17.0.2",
"react-error-overlay": "6.0.9",
"typescript": "4.9.4",
"vite": "6.3.4",
"vite-plugin-dts": "1.7.1",
"vite-plugin-environment": "1.1.0",
"vite-plugin-rewrite-all": "0.1.2",
"vite-plugin-style-import": "1.4.1",
"vite-plugin-svgr": "1.0.1",
"vite-tsconfig-paths": "4.3.2"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"packageManager": "yarn@3.4.1"
}