fleet/ee/fleetd-chrome/package.json
Zach Wasserman 42b3e5602e
Fleetd for Chrome (#10281)
# Checklist for submitter

If some of the following don't apply, delete the relevant line.

- [x] Changes file added for user-visible changes in `changes/` or
`orbit/changes/`.
See [Changes
files](https://fleetdm.com/docs/contributing/committing-changes#changes-files)
for more information.
- [x] Added/updated tests
- [x] Manual QA for all new/changed functionality
2023-03-16 09:01:10 -03:00

44 lines
1.1 KiB
JSON

{
"name": "fleetd-for-chrome",
"description": "Extension for Fleetd on ChromeOS",
"version": "1.0.3",
"dependencies": {
"wa-sqlite": "github:rhashimoto/wa-sqlite#buildless"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/chrome": "^0.0.224",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"msw": "^1.1.0",
"node-sass": "^8.0.0",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0"
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack --config webpack.dev.js",
"watch": "webpack -w --config webpack.dev.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test-watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
},
"type": "module",
"eslintConfig": {
"extends": "react-app",
"env": {
"browser": true,
"webextensions": true
}
},
"msw": {
"workerDirectory": "src"
}
}