-
Notifications
You must be signed in to change notification settings - Fork 400
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 790 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 790 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
{
"name": "@saleor/handlebars",
"version": "0.1.1",
"type": "module",
"exports": {
".": "./src/index.ts"
},
"main": "./src/index.ts",
"scripts": {
"check-types": "tsc",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest",
"test:ci": "vitest run --coverage"
},
"devDependencies": {
"@saleor/eslint-config-apps": "workspace:*",
"@saleor/typescript-config-apps": "workspace:*",
"@types/handlebars-helpers": "0.5.6",
"@vitest/coverage-v8": "catalog:",
"eslint": "catalog:",
"handlebars": "4.7.9",
"handlebars-helpers": "0.10.0",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
"handlebars": ">=4.7.0",
"handlebars-helpers": ">=0.10.0"
}
}