-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "svelte-client-components",
"version": "0.1.0",
"description": "Preprocessor for svelte that allows you to annotate a component as a client component with the extension `.client.svelte`",
"main": "index.js",
"type": "module",
"scripts": {
"changeset": "changeset",
"changeset:publish": "changeset publish",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "vitest",
"test:ci": "pnpm lint && pnpm format && pnpm test -- --run"
},
"keywords": [
"svelte",
"preprocessor",
"client components"
],
"exports": {
".": "./index.js"
},
"files": [
"index.js"
],
"author": "",
"license": "ISC",
"dependencies": {
"magic-string": "^0.30.5",
"zimmerframe": "^1.1.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/estree": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"svelte": "^4.2.8",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^1.1.1"
},
"peerDependencies": {
"svelte": "^4"
}
}