mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
82 lines
2.1 KiB
JSON
82 lines
2.1 KiB
JSON
{
|
|
"name": "@logto/app-insights",
|
|
"version": "1.4.0",
|
|
"main": "lib/index.js",
|
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
|
"license": "MPL-2.0",
|
|
"type": "module",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"exports": {
|
|
"./*": {
|
|
"import": "./lib/*.js",
|
|
"types": "./lib/*.d.ts"
|
|
},
|
|
"./react": {
|
|
"import": "./lib/react/index.js",
|
|
"types": "./lib/react/index.d.ts"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"precommit": "lint-staged",
|
|
"build": "rm -rf lib/ && tsc -p tsconfig.build.json",
|
|
"build:test": "rm -rf lib/ && tsc -p tsconfig.test.json --sourcemap",
|
|
"dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput --incremental",
|
|
"lint": "eslint --ext .ts src",
|
|
"lint:report": "pnpm lint --format json --output-file report.json",
|
|
"test:only": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
"test": "pnpm build:test && pnpm test:only",
|
|
"prepack": "pnpm build"
|
|
},
|
|
"devDependencies": {
|
|
"@silverhand/eslint-config": "5.0.0",
|
|
"@silverhand/eslint-config-react": "5.0.0",
|
|
"@silverhand/ts-config": "5.0.0",
|
|
"@silverhand/ts-config-react": "5.0.0",
|
|
"@types/jest": "^29.4.0",
|
|
"@types/node": "^20.9.5",
|
|
"@types/react": "^18.0.31",
|
|
"eslint": "^8.44.0",
|
|
"history": "^5.3.0",
|
|
"jest": "^29.7.0",
|
|
"lint-staged": "^15.0.0",
|
|
"prettier": "^3.0.0",
|
|
"react": "^18.0.0",
|
|
"tslib": "^2.4.1",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"engines": {
|
|
"node": "^20.9.0"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "@silverhand/react"
|
|
},
|
|
"prettier": "@silverhand/eslint-config/.prettierrc",
|
|
"dependencies": {
|
|
"@microsoft/applicationinsights-clickanalytics-js": "^3.0.2",
|
|
"@microsoft/applicationinsights-react-js": "^17.0.0",
|
|
"@microsoft/applicationinsights-web": "^3.0.2",
|
|
"@silverhand/essentials": "^2.9.0",
|
|
"applicationinsights": "^2.7.0"
|
|
},
|
|
"peerDependencies": {
|
|
"history": "^5.3.0",
|
|
"react": "^18.0.0",
|
|
"tslib": "^2.4.1"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"history": {
|
|
"optional": true
|
|
},
|
|
"react": {
|
|
"optional": true
|
|
},
|
|
"tslib": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|