mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
75 lines
1.8 KiB
JSON
75 lines
1.8 KiB
JSON
{
|
|
"name": "@logto/app-insights",
|
|
"version": "1.0.1",
|
|
"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"
|
|
}
|
|
},
|
|
"//": "This field is for parcel. Remove after https://github.com/parcel-bundler/parcel/pull/8807 published.",
|
|
"alias": {
|
|
"./react": "./lib/react.js"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"precommit": "lint-staged",
|
|
"build": "rm -rf lib/ && tsc -p tsconfig.build.json",
|
|
"build:test": "pnpm build",
|
|
"dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput --incremental",
|
|
"lint": "eslint --ext .ts src",
|
|
"lint:report": "pnpm lint --format json --output-file report.json",
|
|
"prepack": "pnpm build"
|
|
},
|
|
"devDependencies": {
|
|
"@silverhand/eslint-config": "3.0.1",
|
|
"@silverhand/ts-config": "3.0.0",
|
|
"@types/node": "^18.11.18",
|
|
"@types/react": "^18.0.31",
|
|
"eslint": "^8.34.0",
|
|
"history": "^5.3.0",
|
|
"lint-staged": "^13.0.0",
|
|
"prettier": "^2.8.2",
|
|
"react": "^18.0.0",
|
|
"tslib": "^2.4.1",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"engines": {
|
|
"node": "^18.12.0"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "@silverhand"
|
|
},
|
|
"prettier": "@silverhand/eslint-config/.prettierrc",
|
|
"dependencies": {
|
|
"@microsoft/applicationinsights-react-js": "^3.4.1",
|
|
"@microsoft/applicationinsights-web": "^2.8.11",
|
|
"@silverhand/essentials": "^2.5.0",
|
|
"applicationinsights": "^2.5.0"
|
|
},
|
|
"peerDependencies": {
|
|
"history": "^5.3.0",
|
|
"react": "^18.0.0",
|
|
"tslib": "^2.4.1"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"history": {
|
|
"optional": true
|
|
},
|
|
"react": {
|
|
"optional": true
|
|
},
|
|
"tslib": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|