summaryrefslogtreecommitdiff
path: root/model/package.json
blob: 0f4f691d3635cdc1fc9657c32cb81f6c39050e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
    "name": "@emprespresso/ci_model",
    "version": "0.1.0",
    "type": "module",
    "main": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.js"
        }
    },
    "scripts": {
        "build": "tsc",
        "dev": "tsc --watch",
        "clean": "rm -rf dist",
        "type-check": "tsc --noEmit"
    },
    "dependencies": {
        "@emprespresso/pengueno": "^0.0.6"
    },
    "files": [
        "dist/**/*",
        "package.json",
        "README.md"
    ]
}