-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.56 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.56 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
{
"name": "webflow-clipboard",
"version": "1.0.2",
"description": "Copy to Webflow / Paste from Webflow — put Xscp JSON on the clipboard for Webflow Designer, or extract it from a paste event. Use as a script or as a React \"Copy to Webflow\" button.",
"license": "MIT",
"author": "Bejamas",
"repository": {
"type": "git",
"url": "git+https://github.com/bejamas/webflow-clipboard.git"
},
"homepage": "https://github.com/bejamas/webflow-clipboard#readme",
"bugs": {
"url": "https://github.com/bejamas/webflow-clipboard/issues"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist-esm/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**",
"dist-esm/**",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist-esm/index.mjs",
"require": "./dist/index.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist-esm/react.mjs",
"require": "./dist/react.js"
}
},
"scripts": {
"build": "rm -rf dist dist-esm && tsc -p tsconfig.build.cjs.json && tsc -p tsconfig.build.esm.json && node scripts/prepare-esm.cjs",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"publish:npm": "npm run build && npm publish --access public"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@types/react": "^19.0.0",
"typescript": "^5.6.0"
}
}