-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.05 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
{
"name": "288-toolkit",
"version": "1.0.0",
"homepage": "https://github.com/DeuxHuitHuit/288-toolkit#readme",
"repository": {
"type": "git",
"url": "https://github.com/DeuxHuitHuit/288-toolkit"
},
"type": "module",
"engine": 20,
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build --filter='./packages/**'",
"make-pkg": "node ./scripts/make-pkg.js",
"test": "vitest run",
"test:watch": "vitest",
"sync": "svelte-kit sync",
"format:prettier": "prettier --config ./.prettierrc",
"format:file": "npm run format:prettier -- --write",
"format": "npm run format:file .",
"check": "svelte-check --tsconfig ./tsconfig.json --fail-on-warnings",
"check:watch": "npm run check -- --watch",
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint --max-warnings=0 --cache .",
"lint:fix": "npm run lint -- --fix",
"lc": "npm run lint && npm run check",
"lc:watch": "npm run lint && npm run check -- --watch",
"cs": "pnpm changeset",
"version": "pnpm changeset version",
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm --filter \"@288-toolkit/*\" publish -r --no-git-checks --access public"
},
"peerDependencies": {
"@sveltejs/kit": "2.x",
"svelte": "4.x || 5.x"
},
"devDependencies": {
"@288-toolkit/types": "workspace:*",
"@changesets/cli": "2.27.1",
"@sveltejs/package": "2.3.1",
"@sveltejs/vite-plugin-svelte": "3.1.0",
"@types/node": "20.12.7",
"autoprefixer": "10.4.19",
"changeset": "0.2.6",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-svelte": "2.37.0",
"jsdom": "24.0.0",
"prettier": "3.2.5",
"prettier-plugin-organize-imports": "3.2.4",
"prettier-plugin-svelte": "3.2.3",
"prettier-plugin-tailwindcss": "0.5.14",
"svelte-check": "3.6.9",
"svelte-fsm": "1.2.0",
"svelte-preprocess": "5.1.4",
"tslib": "2.6.2",
"typescript": "5.4.5",
"typescript-eslint": "7.7.1",
"vite": "5.2.10",
"vitest": "2.1.6"
},
"dependencies": {
"@288-toolkit/strings": "workspace:*",
"@288-toolkit/vite-plugin-svelte-inline-component": "workspace:^",
"turbo": "^1.13.3"
}
}