-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.5 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.5 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
{
"name": "react-user-analytics",
"version": "0.0.1",
"type": "module",
"files": [
"dist"
],
"main": "./dist/react-user-analytics.umd.cjs",
"module": "./dist/react-user-analytics.js",
"exports": {
".": {
"import": "./dist/react-user-analytics.js",
"require": "./dist/react-user-analytics.umd.cjs"
}
},
"scripts": {
"start": "vite --port 3000 --open --mode development",
"dev": "vite --port 3000 --open --mode development",
"build": "tsc && vite build --mode production",
"build-demo": "tsc && vite build -c vite-demo.config.js --mode production",
"preview": "npm run build-demo && npm run docs && vite preview --open",
"serve": "vite preview --open",
"test": "vitest",
"lint": "npx prettier . --check",
"docs": "typedoc src --gitRevision develop --out ./dist/docs",
"tsc": "tsc --project tsconfig.json"
},
"dependencies": {
"localforage": "^1.10.0",
"pako": "^2.0.3",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@microlink/react-json-view": "^1.26.1",
"@microsoft/tsdoc": "^0.13.0",
"@types/pako": "^1.0.1",
"@vitejs/plugin-react": "^4.3.4",
"prettier": "3.5.3",
"react-router": "^7.5.0",
"typedoc": "^0.28.0",
"typescript": "^5.8.3",
"vite": "^6.2.1",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.0.8"
}
}