-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.66 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.66 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
{
"name": "create-webflow-extension",
"displayName": "Create Webflow Extension",
"version": "1.0.1",
"description": "Scaffold a new Webflow Designer Extension project with a built-in template.",
"keywords": [
"cli",
"designer-extension",
"scaffold",
"webflow"
],
"homepage": "https://github.com/Flash-Brew-Digital/create-webflow-extension",
"bugs": {
"url": "https://github.com/Flash-Brew-Digital/create-webflow-extension/issues"
},
"license": "MIT",
"author": {
"name": "Ben Sabic",
"url": "https://bensabic.ca"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Flash-Brew-Digital/create-webflow-extension.git"
},
"bin": {
"create-webflow-extension": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"type": "module",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"type-check": "tsc --noEmit",
"check": "ultracite check --type-aware --type-check",
"fix": "ultracite fix --type-aware --type-check"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"commander": "^14.0.2",
"degit": "^2.8.4",
"execa": "^9.6.1",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/degit": "^2.8.6",
"@types/node": "^25.0.3",
"oxfmt": "^0.27.0",
"oxlint": "^1.36.0",
"oxlint-tsgolint": "^0.11.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"ultracite": "7.2.1",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a"
}