-
-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
54 lines (54 loc) · 1.83 KB
/
package.json
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
53
54
{
"description": "The monorepo for vjsf lib, docs, examples, etc.",
"scripts": {
"build": "npm -w lib run build && npm -w compiler run build && npm -w markdown run build && npm -w doc run build:master",
"test": "npm -w lib run test",
"lint": "eslint --ext .js,.ts,.vue .",
"lint-fix": "eslint --fix --ext .js,.ts,.vue .",
"dev-zellij": "zellij --layout .zellij.kdl",
"publish:master": "npm -w doc run build:master && gh-pages-multi deploy -v -s doc/.output/public -t master",
"publish:latest": "npm -w doc run build:latest && gh-pages-multi deploy -v -s doc/.output/public -t latest",
"prepare": "husky install && npx relative-deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koumoul-dev/vuetify-jsonschema-form.git"
},
"author": "Alban Mouton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/koumoul-dev/vuetify-jsonschema-form/issues"
},
"homepage": "https://github.com/koumoul-dev/vuetify-jsonschema-form#readme",
"devDependencies": {
"@json-layout/core": "0.33.2",
"@json-layout/vocabulary": "0.23.2",
"@json-layout/examples": "0.21.0",
"@commitlint/config-conventional": "^17.7.0",
"@koumoul/gh-pages-multi": "^0.7.2",
"commitlint": "^17.7.2",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-vue": "^9.19.2",
"husky": "^8.0.3",
"relative-deps": "^1.0.7",
"typescript": "^5.2.2"
},
"workspaces": [
"doc",
"lib",
"compiler",
"markdown"
],
"relativeDependencies": {
"@json-layout/examples": "../json-layout/examples/",
"@json-layout/core": "../json-layout/core/",
"@json-layout/vocabulary": "../json-layout/vocabulary/"
},
"overrides": {
"easymde": {
"marked": "^14.1.3"
}
}
}