-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.95 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.95 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
69
70
71
{
"name": "@faustwp/experimental-app-router",
"type": "module",
"version": "0.6.0",
"description": "Experimental: A Faust package to support Next.js' App Router",
"exports": {
".": "./dist/index.js",
"./ssr": "./dist/ssr.js",
"./package.json": "./package.json"
},
"types": "dist/index.d.ts",
"keywords": [
"next",
"nextjs",
"faust",
"faustjs",
"esm",
"headless",
"wordpress"
],
"scripts": {
"dev": "concurrently \"npm:watch-*\" --prefix-colors \"auto\"",
"build": "concurrently \"npm:build-*\" --prefix-colors \"auto\"",
"prebuild": "npm run clean",
"clean": "rimraf dist",
"format": "prettier --write .",
"prepublish": "npm run build",
"test:coverage:ci": "jest --ci --json --coverage --testLocationInResults --outputFile=report.json",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test": "jest",
"build-js": "tsc -p .",
"watch-js": "concurrently \"npm:build-js -- --watch\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/wpengine/faustjs.git"
},
"author": "Faust Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/wpengine/faustjs/issues"
},
"homepage": "https://github.com/wpengine/faustjs#readme",
"engines": {
"node": ">=18",
"npm": ">=8"
},
"peerDependencies": {
"@apollo/client": ">=3.8.0",
"@apollo/experimental-nextjs-app-support": ">=0.11.5",
"@faustwp/cli": ">=1.1.3",
"@faustwp/core": ">=1.1.2",
"next": ">=13.0.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@apollo/client": "^3.8.0",
"@apollo/experimental-nextjs-app-support": "^0.11.5",
"@testing-library/jest-dom": "^5.17.0",
"@types/node": "^20.4.6",
"concurrently": "^8.2.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6"
}
}