Mirror of https://github.com/roostorg/coop
github.com/roostorg/coop
1{
2 "name": "@roostorg/types",
3 "type": "module",
4 "version": "1.0.49",
5 "description": "Shared types across Coop services",
6 "module": "transpiled/index.js",
7 "typings": "./transpiled/index.d.ts",
8 "scripts": {
9 "build": "tsc",
10 "prepublishOnly": "npm run build",
11 "test": "npm run build && node --test transpiled/test_scripts/"
12 },
13 "author": "Roostorg",
14 "files": [
15 "transpiled"
16 ],
17 "license": "ISC",
18 "devDependencies": {
19 "@types/node": "^20.3.1",
20 "typescript": "^4.9.3"
21 },
22 "publishConfig": {
23 "access": "public"
24 },
25 "exports": {
26 ".": {
27 "import": "./transpiled/index.js",
28 "types": "./transpiled/index.d.ts"
29 }
30 },
31 "dependencies": {
32 "date-fns": "^2.29.3",
33 "type-fest": "^4.3.2"
34 }
35}