0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/app-insights/package.json

62 lines
1.5 KiB
JSON
Raw Permalink Normal View History

{
"name": "@logto/app-insights",
2024-05-14 07:27:55 -05:00
"version": "2.0.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"
}
},
"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",
2024-03-27 23:55:10 -05:00
"test": "vitest src",
"test:ci": "pnpm run test --silent --coverage",
"prepack": "pnpm build"
},
"devDependencies": {
"@silverhand/eslint-config": "6.0.1",
"@silverhand/ts-config": "6.0.0",
"@types/node": "^20.9.5",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^8.56.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
2024-07-20 09:04:56 -05:00
"typescript": "^5.5.3",
"vitest": "^2.1.8"
},
"engines": {
"node": "^20.9.0"
},
"eslintConfig": {
"extends": "@silverhand"
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"dependencies": {
"@silverhand/essentials": "^2.9.1",
"applicationinsights": "^2.9.5"
},
"peerDependencies": {
"tslib": "^2.4.1"
},
"peerDependenciesMeta": {
"tslib": {
"optional": true
}
}
}