-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "svelte-preprocess-directives",
"version": "0.1.2",
"license": "MIT",
"description": "Svelte preprocessor that allows class and style directives to be used on Svelte components.",
"author": "Eric Liu (https://github.com/metonym)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "bun test",
"build": "bun --bun tsc"
},
"dependencies": {
"estree-walker": "^2.0.2",
"magic-string": "^0.30.11"
},
"devDependencies": {
"@types/jest": "latest",
"svelte": "latest",
"typescript": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metonym/svelte-preprocess-directives.git"
},
"homepage": "https://github.com/metonym/svelte-preprocess-directives",
"bugs": "https://github.com/metonym/svelte-preprocess-directives/issues",
"keywords": [
"svelte",
"svelte preprocessor",
"component",
"directive"
],
"files": [
"dist"
]
}