forked from PostHog/posthog-definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.87 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
64
65
66
67
68
{
"name": "@posthog/definitions",
"version": "0.1.0-alpha.3",
"description": "Infrastructure-as-code for PostHog dashboards and insights.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"posthog-definitions": "./dist/cli/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json && chmod +x dist/cli/index.js",
"prepare": "tsc -p tsconfig.json && chmod +x dist/cli/index.js",
"dev": "tsx src/cli/index.ts",
"apply": "tsx src/cli/index.ts apply",
"pull": "tsx src/cli/index.ts pull",
"typecheck": "tsc -p tsconfig.json --noEmit",
"typecheck:examples": "tsc -p tsconfig.examples.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"codegen": "tsx scripts/codegen.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "VITEST_MODE=integration vitest run",
"test:acceptance": "VITEST_MODE=acceptance vitest run",
"smoke": "./scripts/smoke.sh"
},
"dependencies": {
"enquirer": "^2.4.1",
"openapi-fetch": "^0.17.0",
"tinyglobby": "^0.2.10",
"tsx": "^4.19.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.10.2",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"openapi-format": "^1.31.0",
"openapi-typescript": "^7.13.0",
"prettier": "^3.8.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.59.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.1.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PostHog/posthog-definitions.git"
}
}