-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.65 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@automators/datamaker",
"description": "The official Node.js / Typescript library for the DataMaker API",
"author": "Automators <office@automators.com>",
"license": "MIT",
"version": "1.1.0",
"packageManager": "pnpm@10.33.0",
"homepage": "https://github.com/automators-com/datamaker-js",
"bugs": "https://github.com/automators-com/datamaker-js/issues",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"generate": "openapi-typescript spec/openapi.json -o src/generated/schema.ts",
"generate:check": "node scripts/check-generated.mjs",
"lint": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"release": "pnpm run build && changeset publish",
"changeset": "changeset"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.10.4",
"@vitest/coverage-v8": "^1.0.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.7",
"vitest": "^1.0.2",
"openapi-typescript": "^7.13.0"
},
"dependencies": {},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"spec/openapi.json",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"keywords": [
"datamaker",
"test-data",
"synthetic-data",
"automators",
"sdk"
],
"repository": {
"type": "git",
"url": "git+https://github.com/automators-com/datamaker-js.git"
}
}