-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 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
{
"name": "svelte-preprocess-style-child-component",
"version": "0.1.7",
"repository": {
"type": "git",
"url": "https://github.com/valterkraemer/svelte-preprocess-style-child-component"
},
"description": "A preprocessor for Svelte that allows you to style child components",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"type": "module",
"scripts": {
"build": "rollup -c",
"test": "node test/test.js",
"build:test": "npm run build && npm run test"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"svelte-preprocess"
],
"author": "Valter Kraemer",
"license": "MIT",
"types": "dist/index.d.ts",
"dependencies": {
"magic-string": "^0.26.5"
},
"peerDependencies": {
"svelte": "*"
},
"devDependencies": {
"@types/node": "^18.8.0",
"esbuild": "^0.15.10",
"rollup": "^2.79.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.10.1",
"svelte": "^3.50.1",
"typescript": "^4.7.4",
"uvu": "^0.5.6"
}
}