Files
mostlymatter/webapp/platform/client/package.json
Harrison Healey 1edbde8aa3 Run type check for all web app packages in CI (#22578)
* Fix incorrect usage of types pacakge

* Make platform packages properly expose their type definitions

* Have Boards, Channels, and Playbooks get types from platform packages properly

* Run type check for all web app packages in CI

* Fix incorrect job name
2023-03-23 10:10:52 -04:00

45 строки
1.0 KiB
JSON

{
"name": "@mattermost/client",
"version": "7.9.0",
"description": "JavaScript/TypeScript client for Mattermost",
"keywords": [
"mattermost"
],
"homepage": "https://github.com/mattermost/mattermost-webapp/tree/master/packages/client#readme",
"license": "MIT",
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "github:mattermost/mattermost-webapp",
"directory": "packages/client"
},
"dependencies": {
"form-data": "4.0.0"
},
"devDependencies": {
"@babel/preset-typescript": "7.21.0",
"isomorphic-fetch": "3.0.0",
"jest": "*",
"nock": "*"
},
"peerDependencies": {
"@mattermost/types": "*",
"typescript": "^4.3"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"scripts": {
"build": "tsc --build --verbose",
"run": "tsc --watch --preserveWatchOutput",
"test": "jest",
"clean": "rm -rf lib node_modules tsconfig.tsbuildinfo"
}
}