-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 919 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 919 Bytes
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
{
"name": "@example/basic-script",
"version": "6.0.0",
"license": "MIT",
"author": "ObjectQL Contributors",
"repository": {
"type": "git",
"url": "https://github.com/objectql/objectql.git",
"directory": "examples/starters/basic-script"
},
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"codegen": "objectql generate -s src -o src",
"build": "npm run codegen && tsc && cp src/*.yml dist/",
"repl": "objectql repl",
"test": "echo \"No tests specified\" && exit 0"
},
"peerDependencies": {
"@objectql/core": "workspace:*",
"@objectql/types": "workspace:*",
"@objectql/driver-knex": "workspace:*",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@objectql/core": "workspace:*",
"@objectql/types": "workspace:*",
"@objectql/cli": "workspace:*",
"typescript": "^5.3.0"
}
}