-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.42 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
{
"name": "@thebigrick/catalyst-pluginizr",
"version": "0.3.1",
"description": "Catalyst Pluginizer",
"main": "src/index.ts",
"types": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./with-catalyst-pluginizr": "./src/with-catalyst-pluginizr.ts",
"./with-tailwind-pluginizr": "./pluginizr/with-tailwind-pluginizr.js",
"./generated/*": "./src/generated/*.ts"
},
"scripts": {
"build": "npm-run-all setup build:plugins",
"build:plugins": "npx tsx src/scripts/prepare-plugins.ts",
"dev": "npx tsx src/scripts/run-dev.ts",
"setup": "npx tsx src/scripts/setup.ts",
"clean": "npx tsx src/scripts/clean.ts",
"test": "jest",
"lint": "eslint . --ext .ts,.tsx,.js,.cjs --max-warnings 0",
"typecheck": "tsc --noEmit"
},
"author": "Riccardo Tempesta <riccardo.tempesta@bigcommerce.com>",
"license": "MIT",
"peerDependencies": {
"react": "*",
"next": "*"
},
"peerDependenciesMeta": {
"react": {
"optional": false
},
"next": {
"optional": false
}
},
"devDependencies": {
"glob": "^11.0.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"chokidar": "^4.0.1",
"@types/node": "^20.17.6",
"@types/react": "^18.3.12",
"typescript": "^5.6.3",
"@babel/parser": "^7.26.3",
"@babel/traverse": "^7.26.3",
"@babel/types": "^7.26.3",
"@babel/generator": "^7.26.3",
"tsx": "^4.19.2",
"npm-run-all": "^4.1.5"
}
}