forked from Shopify/theme-liquid-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 754 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 754 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
{
"name": "@shopify/theme-liquid-docs",
"version": "1.0.0",
"private": true,
"description": "Repository for sources of truth relating to Shopify theme liquid content.",
"repository": "https://github.com/Shopify/theme-liquid-docs",
"author": "Albert Chu <albert.chu@shopify.com>",
"license": "MIT",
"scripts": {
"format": "prettier --write \"schemas/theme/*.json\"",
"format:check": "prettier --check --ignore-unknown \"schemas/theme/*.json\"",
"generate:ai": "node scripts/generate-ai-file.js",
"test": "vitest"
},
"devDependencies": {
"lodash.set": "^4.3.2",
"prettier": "^2.8.8",
"vitest": "^0.32.2",
"vscode-json-languageservice": "^5.3.10"
},
"dependencies": {
"liquidjs": "^10.21.1"
}
}