forked from svelteuidev/svelteui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 3 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
73
74
75
76
77
{
"name": "svelteui",
"version": "0.7.0",
"private": true,
"description": "SvelteUI Components Monorepo.",
"keywords": [
"Svelte",
"Sveltekit",
"UI",
"Component Library"
],
"repository": {
"type": "git",
"url": "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",
"cm:noadd": "./node_modules/cz-customizable/standalone.js",
"coverage": "turbo run coverage --parallel",
"dev": "turbo run dev --parallel",
"docs:build": "cd docs && npm run build",
"docs:deploy": "npm run docs:build && deno run -A --unstable ./scripts/docs/build.ts && cd docs && npm run deploy:nobuild",
"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",
"pre-release": "deno run --unstable --allow-read --allow-write ./scripts/pre-release.ts",
"prepare": "husky install",
"pub": "turbo run pub --parallel",
"release": "npm run pub && sh scripts/git/discard.sh",
"release:prepare": "npm run clean && npm run repo:prepush && npm run pre-release && npm run package && npm run generate-types",
"repo:prepush": "npm run sort && npm run format && npm run lint",
"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",
"update:lockfile": "turbo run update:lockfile --parallel && rimraf packages/*/node_modules"
},
"lint-staged": {
"*.--parallel": "prettier --write"
},
"devDependencies": {
"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",
"radix-icons-svelte": "1.2.1",
"rimraf": "3.0.2",
"turbo": "latest",
"vitest": "0.9.3",
"vitest-svelte-kit": "0.0.6"
},
"packageManager": "[email protected]"
}