Files
chatgpt-exporter/package.json
Pionxzh c75b0f254d init
2022-12-05 19:43:24 +08:00

38 lines
898 B
JSON

{
"name": "@pionxzh/chatgpt-exporter",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@7.12.2",
"author": "pionxzh",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"clean": "rimraf ./dist",
"release:ci": "cpy packages/**/dist/*.user.js dist --flat",
"prepare": "husky install"
},
"devDependencies": {
"@pionxzh/eslint-config-ts": "^0.1.1",
"@types/node": "^18.11.10",
"cpy-cli": "^4.2.0",
"eslint": "^8.29.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"rimraf": "^3.0.2",
"sass": "^1.56.1",
"turbo": "^1.6.3",
"typescript": "^4.9.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "pnpm exec eslint"
}
}