-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
110 lines (110 loc) · 3.69 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "svelte-splitpanes",
"version": "8.0.9",
"private": false,
"description": "A full featured resizable pane layout splitter, ported from vue-splitpanes and enhanced",
"keywords": [
"svelte",
"layout",
"split",
"splitter",
"pane",
"panel",
"resizable"
],
"homepage": "https://orefalo.github.io/svelte-splitpanes/",
"bugs": "https://github.com/orefalo/svelte-splitpanes/issues",
"repository": {
"type": "git",
"url": "https://github.com/orefalo/svelte-splitpanes"
},
"license": "MIT",
"author": {
"name": "Olivier Refalo",
"url": "https://github.com/orefalo"
},
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "vite build && node ./scripts/create-minified-size-badges.js",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"commit": "cross-env node ./node_modules/cz-customizable/standalone.js",
"dev": "cross-env DEV=1 vite dev --port 3000",
"example-build:build": "cd example-temp && svelte-kit sync && pnpm run build",
"example-build:setup": "rimraf -g \"./example-temp/!(node_modules)*\" && copyfiles -u 1 \"./example/!(node_modules)*/**/*\" \"./example/!(node_modules)*\" ./example-temp && node ./scripts/example/pnpm-install-project-in-example-temp.js",
"example-build:test": "node ./scripts/example/verify-example-build.js",
"fetch-and-publish": "node scripts/fetch-and-publish.js",
"format": "prettier --ignore-path .gitignore --write --cache !**/pnpm-lock.yaml !./CHANGELOG.md .",
"lint": "pnpm run format && pnpm run lint-es",
"lint-es": "eslint --cache .",
"package": "pnpm run package:build && npm run package:pack",
"package:build": "rimraf -g ./package/* && svelte-package -o ./package/dist && copyfiles ./README.md ./LICENSE ./package/ && node scripts/package-clean-copy.js",
"package:pack": "cd package && npm pack",
"prepare": "husky",
"preview": "vite preview --port 3000",
"static-serv": "serve -l 3000 --no-clipboard docs",
"test": "playwright test"
},
"config": {
"cz-customizable": {
"config": ".cz-config.cjs"
}
},
"dependencies": {
"esm-env-robust": "0.0.3"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@playwright/test": "^1.48.2",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.7.3",
"@sveltejs/package": "^2.3.7",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@types/eslint": "^9.6.1",
"@types/node": "^22.8.4",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"badge-maker": "^4.1.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"cz-customizable": "^7.2.1",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-gitignore": "^0.1.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-svelte": "^2.46.0",
"globals": "^15.11.0",
"highlight.js": "^11.10.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"rimraf": "^6.0.1",
"sass": "^1.80.5",
"serve": "^14.2.4",
"svelte-check": "^4.0.5",
"svelte-highlight": "^7.7.0",
"svelte-preprocess": "^6.0.3",
"svelte-range-slider-pips": "^3.1.2",
"tslib": "^2.8.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"vite": "^5.4.10",
"vitest": "^2.1.4"
},
"peerDependencies": {
"svelte": "^4.2.19 || ^5.1.0"
}
}