72f9400756
CI / lint-typecheck-test (push) Has been cancelled
Configure GitHub Actions for linting, typechecking, and testing. Add Husky and lint-staged for pre-commit checks. Implement API response caching in AsyncStorage for offline support. Move core tests to packages/core and add vitest configuration.
20 lines
358 B
JSON
20 lines
358 B
JSON
{
|
|
"name": "@timetoleave/core",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "eslint src/",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"date-fns": "^4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5",
|
|
"vitest": "^4.1.5"
|
|
}
|
|
}
|