-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.07 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.07 KB
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
{
"name": "svelte-preprocess-global",
"version": "0.2.0",
"license": "MIT",
"description": "Svelte preprocessor that applies the `:global()` directive to id, class, and data attribute selectors passed to Svelte components.",
"author": "Eric Liu (https://github.com/metonym)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "vitest",
"prepack": "tsc",
"format": "prettier --ignore-path .gitignore --write ."
},
"dependencies": {
"magic-string": "^0.27.0"
},
"devDependencies": {
"prettier": "^2.8.2",
"prettier-plugin-svelte": "^2.9.0",
"svelte": "^3.55.0",
"typescript": "^4.9.4",
"vitest": "^0.26.3"
},
"repository": {
"type": "git",
"url": "https://github.com/metonym/svelte-preprocess-global"
},
"homepage": "https://github.com/metonym/svelte-preprocess-global",
"bugs": "https://github.com/metonym/svelte-preprocess-global/issues",
"keywords": [
"svelte",
"svelte preprocessor",
"global"
],
"files": [
"dist"
],
"prettier": {
"printWidth": 100
}
}