-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.38 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@differ/next",
"version": "0.0.0",
"description": "Runtime instrumentation primitives for Differ-managed Next.js apps.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.js",
"default": "./dist/client.js"
},
"./report": {
"types": "./dist/report.d.ts",
"browser": "./dist/report.browser.js",
"import": "./dist/report.js",
"default": "./dist/report.js"
},
"./global-error": {
"types": "./dist/global-error.d.ts",
"import": "./dist/global-error.js",
"default": "./dist/global-error.js"
},
"./error-boundary": {
"types": "./dist/error-boundary.d.ts",
"import": "./dist/error-boundary.js",
"default": "./dist/error-boundary.js"
},
"./instrumentation": {
"types": "./dist/instrumentation.d.ts",
"import": "./dist/instrumentation.js",
"default": "./dist/instrumentation.js"
},
"./proxy": {
"types": "./dist/proxy.d.ts",
"import": "./dist/proxy.js",
"default": "./dist/proxy.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js",
"default": "./dist/types.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"docs",
"README.md"
],
"sideEffects": false,
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"typecheck:contracts": "tsc -p tsconfig.type-tests.json --noEmit",
"test": "npm run build && vitest run",
"check": "npm run typecheck && npm run typecheck:contracts && npm test && npm run check:docs && npm run pack:guard",
"check:docs": "node e2e/scripts/check-doc-sync.mjs",
"pack:guard": "node e2e/scripts/assert-pack-boundary.mjs",
"e2e:prepare": "node e2e/scripts/prepare-fixture.mjs",
"e2e": "npm run e2e:prepare && playwright test",
"prepare": "npm run build"
},
"devDependencies": {
"@playwright/test": "^1.61.0",
"next": "^16.2.9",
"next-auth": "^5.0.0-beta.31",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}