-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.36 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
{
"name": "@objectql/starter-basic",
"version": "1.8.4",
"description": "Basic starter template for ObjectQL - Simple project structure with essential metadata files",
"keywords": [
"objectql",
"starter",
"template",
"boilerplate",
"basic",
"example",
"scaffold"
],
"license": "MIT",
"author": "ObjectQL Contributors",
"repository": {
"type": "git",
"url": "https://github.com/objectql/objectql.git",
"directory": "packages/starters/basic"
},
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"codegen": "objectql generate -s src -o src/types",
"build": "npm run codegen && tsc && rsync -a --include '*/' --include '*.yml' --exclude '*' src/ dist/",
"repl": "objectql repl",
"test": "jest"
},
"peerDependencies": {
"@objectql/core": "workspace:*",
"@objectql/driver-sql": "workspace:*",
"@objectql/platform-node": "workspace:*",
"@objectql/types": "workspace:*",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@objectql/cli": "workspace:*",
"@objectql/core": "workspace:*",
"@objectql/driver-sql": "workspace:*",
"@objectql/platform-node": "workspace:*",
"@objectql/types": "workspace:*",
"@types/jest": "^30.0.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.3.0"
}
}