-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.06 KB
/
package.json
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": "@harperdb/nextjs",
"version": "1.0.1",
"type": "module",
"description": "A HarperDB Component for running Next.js apps.",
"keywords": [
"harperdb",
"next.js",
"distributed",
"applications"
],
"homepage": "https://github.com/HarperDB/nextjs",
"bugs": {
"url": "https://github.com/HarperDB/nextjs/issues",
"email": "[email protected]"
},
"author": {
"name": "HarperDB",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HarperDB/nextjs.git"
},
"license": "MIT",
"bin": {
"harperdb-nextjs": "cli.js"
},
"files": [
"config.yaml",
"extension.js",
"cli.js"
],
"scripts": {
"format": "prettier .",
"format:check": "npm run format -- --check",
"format:fix": "npm run format -- --write",
"lint": "eslint ."
},
"dependencies": {
"shell-quote": "^1.8.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@harperdb/code-guidelines": "^0.0.2",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"prettier": "^3.4.2"
},
"prettier": "@harperdb/code-guidelines/prettier"
}