-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.39 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
{
"name": "svelte-target-blank",
"version": "1.0.0",
"type": "module",
"description": "Simple svelte preprocessor to fix your external links",
"main": "./build/index.js",
"files": [
"./build"
],
"exports": {
".": "./build/index.js"
},
"scripts": {
"build": "tsc",
"test": "vitest",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"check": "tsc --noEmit",
"prechangeset:version": "npm run lint && npm run test",
"changeset:version": "changeset version && git add --all",
"changeset:publish": "npm run build && changeset publish && git push --follow-tags"
},
"keywords": [
"svelte",
"preprocessor"
],
"author": "Frédéric Crozatier",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fcrozatier/svelte-targe-blank.git"
},
"bugs": {
"url": "https://github.com/fcrozatier/svelte-targe-blank/issues"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/picomatch": "^2.3.3",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"svelte": "^4.2.15",
"typescript": "^5.4.4",
"vitest": "^1.4.0"
},
"dependencies": {
"estree-walker": "^3.0.3",
"magic-string": "^0.30.10",
"picomatch": "^4.0.2"
},
"peerDependencies": {
"svelte": "^4.0.0 || ^5.0.0-next.120 || ^5.0.0 "
}
}