forked from svelteuidev/svelteui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.68 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
63
64
65
66
67
68
69
70
71
72
{
"name": "svelteui",
"version": "0.6.2",
"private": true,
"description": "SvelteUI Components Monorepo.",
"keywords": [
"Svelte",
"Sveltekit",
"UI",
"Component Library"
],
"repository": {
"type": "git",
"url": "https://https://github.com/svelteuidev/svelteui"
},
"license": "MIT",
"author": "Kamell Perry",
"type": "module",
"workspaces": [
"packages/*",
"configuration/*"
],
"scripts": {
"bump:major": "deno run --unstable --allow-read --allow-write ./scripts/bump.ts major",
"bump:minor": "deno run --unstable --allow-read --allow-write ./scripts/bump.ts minor",
"bump:next": "deno run --unstable --allow-read --allow-write ./scripts/bump.ts next",
"bump:patch": "deno run --unstable --allow-read --allow-write ./scripts/bump.ts patch",
"clean": "rimraf packages/*/{node_modules,package,.turbo,types} packages/*/.svelte-kit/{generated,runtime,types}",
"clean:all": "rimraf packages/*/{node_modules,.svelte-kit,package,.turbo,types}",
"cm": "git add . && ./node_modules/cz-customizable/standalone.js",
"coverage": "turbo run coverage --parallel",
"dev": "turbo run dev --parallel",
"docs:prepush": "cd docs && npx sort-package-json && yarn format && yarn lint",
"docs:typecheck": "cd docs && npm run check",
"fix:bugs": "npm run clean:all && npm i && npm run dev",
"format": "turbo run format --parallel",
"generate-types": "turbo run generate-types --parallel --force",
"postinstall": "npx patch-package",
"lint": "turbo run lint --parallel",
"package": "npm run clean && turbo run package --parallel",
"pre-commit": "lint-staged",
"prepare": "husky install",
"pub": "turbo run pub --parallel",
"release": "changeset publish",
"release:prepare": "npm run clean && npm run repo:prepush && npm run package && npm run generate-types",
"repo:prepush": "npm run sort && npm run format && npm run lint && npm test",
"repo:rebase": "sh scripts/git/rebase-branches.sh",
"repo:sync": "sh scripts/git/sync-branches.sh",
"repo:update": "sh scripts/git/update-branches.sh",
"sort": "npx sort-package-json && turbo run sort && syncpack set-semver-ranges",
"test": "turbo run test --parallel"
},
"lint-staged": {
"*.--parallel": "prettier --write"
},
"devDependencies": {
"@changesets/cli": "2.22.0",
"c8": "7.11.0",
"cz-customizable": "6.3.0",
"husky": "7.0.4",
"lint-staged": "12.4.0",
"micromatch": "4.0.4",
"patch-package": "6.4.7",
"prettier": "2.4.1",
"prettier-plugin-svelte": "2.4.0",
"rimraf": "3.0.2",
"turbo": "latest",
"vitest": "0.9.3",
"vitest-svelte-kit": "0.0.6"
},
"packageManager": "npm@8.3.1"
}