47 lines
1.4 KiB
JSON
47 lines
1.4 KiB
JSON
{
|
|
"name": "faex",
|
|
"version": "1.0.0",
|
|
"description": "FurAFfinity Gallery Exporter",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build:watch": "webpack --config webpack/webpack.dev.js --watch",
|
|
"tailwind:watch": "npx tailwindcss -i ./src/styles/tailwind.css -o ./public/styles.css --watch",
|
|
"build": "webpack --config webpack/webpack.prod.js",
|
|
"tailwind": "npx tailwindcss -i ./src/styles/tailwind.css -o ./public/styles.css",
|
|
"clean": "rimraf dist",
|
|
"test": "npx jest",
|
|
"style": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
"update-all-deps": "npm update --save"
|
|
},
|
|
"author": "R3BL LLC",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/chibat/chrome-extension-typescript-starter.git"
|
|
},
|
|
"dependencies": {
|
|
"@types/chrome": "^0.0.240",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.2",
|
|
"@types/react": "^18.2.14",
|
|
"@types/react-dom": "^18.2.6",
|
|
"copy-webpack-plugin": "^9.1.0",
|
|
"css-loader": "^7.1.2",
|
|
"glob": "^7.2.3",
|
|
"jest": "^29.6.1",
|
|
"prettier": "^2.8.8",
|
|
"rimraf": "^3.0.2",
|
|
"style-loader": "^4.0.0",
|
|
"tailwindcss": "^3.4.8",
|
|
"ts-jest": "^29.1.1",
|
|
"ts-loader": "^8.4.0",
|
|
"typescript": "^5.1.6",
|
|
"webpack": "^5.93.0",
|
|
"webpack-cli": "^4.10.0",
|
|
"webpack-dev-server": "^5.0.4",
|
|
"webpack-merge": "^5.9.0"
|
|
}
|
|
}
|