-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.75 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.75 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
{
"name": "@constructive-sdk/cli",
"version": "0.14.11",
"author": "Constructive <developers@constructive.io>",
"description": "Constructive CLI SDK - Auto-generated GraphQL CLI with ORM client, context management, and interactive prompts",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"bin": {
"csdk": "cli.js"
},
"homepage": "https://github.com/constructive-io/constructive",
"license": "MIT",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/constructive-io/constructive"
},
"bugs": {
"url": "https://github.com/constructive-io/constructive/issues"
},
"scripts": {
"clean": "makage clean",
"prepack": "npm run build",
"build": "makage build",
"build:dev": "makage build --dev",
"pregenerate": "rimraf src/admin src/auth src/objects src/public src/index.ts",
"generate": "pnpm run pregenerate && tsx scripts/generate-sdk.ts",
"lint": "eslint . --fix",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch"
},
"keywords": [
"cli",
"sdk",
"graphql",
"orm",
"constructive",
"postgraphile",
"schema-dir",
"command-line",
"interactive"
],
"dependencies": {
"@0no-co/graphql.web": "^1.1.2",
"@constructive-io/graphql-query": "workspace:^",
"@constructive-io/graphql-types": "workspace:^",
"appstash": "^0.7.0",
"gql-ast": "workspace:^",
"graphql": "16.13.0",
"inquirerer": "^4.7.0",
"nested-obj": "^0.2.1",
"yanse": "^0.2.1"
},
"devDependencies": {
"@constructive-io/graphql-codegen": "workspace:^",
"@types/node": "^22.19.11",
"makage": "^0.3.0",
"tsx": "^4.19.0",
"typescript": "^5.9.3"
}
}