-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
79 lines (79 loc) · 1.92 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "svelte-windicss-preprocess",
"description": "A Svelte Preprocessor to compile tailwindcss at build time based on windicss compiler.",
"version": "4.2.8",
"author": "Veritas Raven",
"contributors": [],
"dependencies": {
"@iconify/json": "1.1.432",
"fast-glob": "3.2.7",
"unconfig": "0.2.2",
"windicss": "3.5.4",
"windicss-runtime-dom": "3.0.0"
},
"devDependencies": {
"@antfu/ni": "0.11.0",
"@nbhr/utils": "0.0.29",
"@types/node": "16.11.9",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"@unocss/core": "0.12.1",
"@unocss/preset-icons": "0.12.1",
"bumpp": "7.1.1",
"cross-env": "7.0.3",
"eslint": "8.3.0",
"picocolors": "1.0.0",
"pnpm": "6.23.1",
"rimraf": "3.0.2",
"sucrase": "3.20.3",
"svelte": "3.44.2",
"tslib": "2.3.1",
"tsm": "2.1.4",
"tsup": "5.8.0",
"typescript": "4.5.2",
"uvu": "0.5.2"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist/**/*"
],
"homepage": "https://windicss.org/",
"keywords": [
"compiler",
"css",
"preprocess",
"svelte",
"tailwindcss",
"windicss"
],
"license": "MIT",
"maintainers": [
{
"name": "Alexander Niebuhr",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/windicss/svelte-windicss-preprocess.git"
},
"scripts": {
"build": "tsup ./src/index.ts --dts --format esm,cjs --no-splitting",
"build:clean": "rimraf dist && nr build",
"dev": "nr build --watch",
"lint": "eslint src",
"lint:tests": "eslint tests --ext .ts",
"release": "nr test && nr build:clean && bumpp --tag --commit --push",
"test": "uvu -r sucrase/register tests",
"test:generate": "tsm generate.ts"
},
"types": "dist/index.d.ts",
"volta": {
"node": "16.13.1"
}
}