-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 988 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 988 Bytes
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
{
"name": "component2block",
"version": "0.1.0",
"description": "Generate WordPress theme.json and CSS token files from a single config for component libraries",
"type": "module",
"bin": {
"c2b": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./preset": {
"import": "./dist/preset.js",
"types": "./dist/preset.d.ts"
}
},
"files": [
"dist",
"templates"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=20"
},
"keywords": [
"storybook",
"wordpress",
"gutenberg",
"block-theme",
"design-tokens",
"theme-json",
"css-variables"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^25.1.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}