-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.38 KB
/
package.json
File metadata and controls
99 lines (99 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@shipflow/overlay",
"version": "0.1.18",
"description": "Shipflow overlay runtime integrating React Grab with a Cursor agent workflow.",
"license": "MIT",
"author": {
"name": "Shipflow"
},
"keywords": [
"shipflow",
"overlay",
"react",
"nextjs",
"cursor",
"react-grab"
],
"homepage": "https://github.com/eriknson/shipflow/tree/main/readme",
"repository": {
"type": "git",
"url": "git+https://github.com/eriknson/shipflow.git",
"directory": "packages/overlay"
},
"bugs": {
"url": "https://github.com/eriknson/shipflow/issues"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"shipflow-overlay": "dist/cli.cjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./next": {
"types": "./dist/next.d.ts",
"import": "./dist/next.js",
"require": "./dist/next.cjs"
},
"./register": {
"types": "./dist/register.d.ts",
"import": "./dist/register.js",
"require": "./dist/register.cjs"
},
"./cli": {
"import": "./dist/cli.js",
"require": "./dist/cli.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\"",
"dev": "tsup src/index.ts --format esm --dts --sourcemap --watch",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"@types/react": "^19.2.3",
"@types/react-dom": "^19.2.3",
"next": "^14.0.0 || ^15.0.0 || ^16.0.0",
"react": "^18.2.0 || ^19.0.0",
"react-dom": "^18.2.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"next": {
"optional": true
}
},
"dependencies": {
"lucide-react": "^0.454.0",
"react-grab": "^0.0.51"
},
"devDependencies": {
"@types/react": "^19.2.3",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"add": "^2.0.6",
"prettier": "^3.2.5",
"tsup": "^8.3.5"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}