-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.87 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.87 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@forgefoundry/nextpulse",
"version": "0.2.0",
"type": "module",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/michaelnease/nextforge.git"
},
"bugs": {
"url": "https://github.com/michaelnease/nextforge/issues"
},
"homepage": "https://github.com/michaelnease/nextforge#readme",
"engines": {
"node": ">=18.17"
},
"publishConfig": {
"access": "public"
},
"bin": {
"nextpulse": "dist/cli/index.js"
},
"main": "./dist/runtime/index.js",
"module": "./dist/runtime/index.js",
"types": "./dist/runtime/index.d.ts",
"exports": {
".": {
"types": "./dist/runtime/index.d.ts",
"react-server": "./dist/runtime/index.js",
"import": "./dist/runtime/index.js",
"require": "./dist/runtime/index.js",
"default": "./dist/runtime/index.js"
},
"./runtime": {
"types": "./dist/runtime/index.d.ts",
"import": "./dist/runtime/index.js",
"default": "./dist/runtime/index.js"
},
"./runtime/*": "./dist/runtime/*",
"./instrumentation": {
"types": "./dist/instrumentation/index.d.ts",
"import": "./dist/instrumentation/index.js",
"default": "./dist/instrumentation/index.js"
},
"./server": {
"types": "./dist/server/bundleScanner.d.ts",
"import": "./dist/server/bundleScanner.js",
"default": "./dist/server/bundleScanner.js"
},
"./diagnostics": {
"types": "./dist/diagnostics/index.d.ts",
"import": "./dist/diagnostics/index.js",
"default": "./dist/diagnostics/index.js"
},
"./diagnostics/overlayView": {
"types": "./dist/diagnostics/overlayView.d.ts",
"import": "./dist/diagnostics/overlayView.js",
"default": "./dist/diagnostics/overlayView.js"
},
"./package.json": "./package.json"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/cli/index.js",
"dev": "tsx src/cli/index.ts",
"test": "vitest run",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\" \"tests/**/*.{ts,tsx,js,jsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\" \"tests/**/*.{ts,tsx,js,jsx}\"",
"verify": "pnpm run build && pnpm format:check && pnpm test",
"zip-diff": "bash scripts/zip-diff.sh"
},
"dependencies": {
"@babel/parser": "^7.26.3",
"commander": "^12.0.0",
"concurrently": "^8.2.2",
"fs-extra": "^11.2.0",
"picocolors": "^1.0.0",
"recast": "^0.23.9",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.0.0",
"@types/react": "^19.2.4",
"prettier": "^3.6.2",
"tsx": "^4.17.0",
"typescript": "^5.6.3",
"vitest": "^2.1.2"
}
}