-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 2.16 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
55
56
57
58
59
60
61
62
{
"name": "svelte-vega-monorepo",
"version": "0.0.0",
"description": "Providing a Svelte Vega component and a demo for it.",
"author": "Alex Bäuerle <[email protected]> (https://a13x.io)",
"repository": "[email protected]:vega/svelte-vega.git",
"bugs": {
"url": "https://github.com/vega/svelte-vega/issues"
},
"private": true,
"license": "BSD-3-Clause",
"scripts": {
"postpublish": "git push; git push --tags",
"build": "yarn workspace svelte-vega build",
"build:sample:svelte": "yarn build && yarn workspace svelte-vega-sample build",
"build:sample:sveltekit": "yarn build && yarn workspace sveltekit-vega-sample build",
"build:storybook": "yarn build && yarn workspace svelte-vega-demo demo:build",
"lint": "prettier --check . && eslint . --ext .svelte,.ts,.js",
"lint:fix": "prettier --write . && eslint . --ext .svelte,.ts,.js --fix",
"storybook": "yarn build && yarn workspace svelte-vega-demo storybook",
"sample:svelte": "yarn build && yarn workspace svelte-vega-sample dev",
"sample:sveltekit": "yarn build && yarn workspace sveltekit-vega-sample dev",
"clean": "rm -rf ./packages/svelte-vega/dist && rm -rf ./packages/storybook/_gh-pages && rm -rf && rm -rf ./packages/sample-project/public/build",
"release": "yarn workspace svelte-vega semantic-release --branches main"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/eslint-parser": "^7.24.7",
"@tsconfig/svelte": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.15.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-svelte": "^2.38.0",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.2",
"semantic-release": "^23.0.6",
"typescript": "^5.5.4"
},
"engines": {
"node": ">16",
"npm": ">=8",
"yarn": ">=1.13.0"
},
"workspaces": [
"./packages/*"
],
"browserslist": [
"defaults"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}