Mirror of https://github.com/roostorg/coop
github.com/roostorg/coop
1{
2 "name": "@roostorg/types",
3 "type": "module",
4 "version": "2.0.0",
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 "repository": {
14 "type": "git",
15 "url": "https://github.com/roostorg/coop",
16 "directory": "types"
17 },
18 "author": "Roostorg",
19 "files": [
20 "transpiled"
21 ],
22 "license": "ISC",
23 "devDependencies": {
24 "@types/node": "^20.3.1",
25 "typescript": "^4.9.3"
26 },
27 "publishConfig": {
28 "access": "public"
29 },
30 "exports": {
31 ".": {
32 "import": "./transpiled/index.js",
33 "types": "./transpiled/index.d.ts"
34 }
35 },
36 "dependencies": {
37 "date-fns": "^2.29.3",
38 "type-fest": "^4.3.2"
39 }
40}