-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.31 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
{
"name": "xdbml-site",
"version": "0.1.0",
"description": "xDBML.org documentation site, built with VitePress",
"private": true,
"type": "module",
"scripts": {
"docs:dev": "npm run prepare:examples && npm run prepare:playground && vitepress dev .",
"docs:build": "npm run prepare:examples && npm run prepare:playground && vitepress build .",
"docs:preview": "vitepress preview .",
"prepare:examples": "node scripts/prepare-examples.mjs",
"prepare:playground": "node scripts/prepare-playground.mjs",
"build:playground": "cd playground && npm install && npm run build",
"test:parser": "cd parser && npm test",
"test:playground": "cd playground && npm test",
"check:vsix": "node scripts/check-vsix.mjs",
"test": "npm run test:parser && npm run test:playground && npm run check:vsix",
"check": "npm test && cd playground && npm run type-check && cd .. && npm run docs:build"
},
"devDependencies": {
"@iarna/toml": "^2.2.5",
"markdown-it-container": "^4.0.0",
"vitepress": "^1.6.4",
"vscode-oniguruma": "^2.0.1",
"vscode-textmate": "^9.3.2",
"vue": "^3.5.0"
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/xdbml/xdbml-spec.git"
},
"license": "Apache-2.0",
"homepage": "https://xdbml.org"
}