-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
119 lines (119 loc) · 3.05 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "css-media-splitter",
"type": "module",
"version": "0.2.6",
"packageManager": "[email protected]",
"description": "Utils that split css by media queries into dedicated files. Supports: plain html files, Vite and Nuxt.",
"author": "Levcsák Sándor",
"license": "MIT",
"homepage": "https://github.com/levchak0910/css-media-splitter",
"repository": {
"type": "git",
"url": "https://github.com/levchak0910/css-media-splitter"
},
"bugs": "https://github.com/levchak0910/css-media-splitter/issues",
"keywords": [
"css",
"media query",
"media query split",
"media query separate",
"vite-plugin",
"vite plugin",
"nuxt-module",
"nuxt module"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./vite-plugin": {
"import": "./dist/integrations/vite-plugin.js",
"require": "./dist/integrations/vite-plugin.cjs"
},
"./nuxt-module": {
"import": "./dist/integrations/nuxt-module.js",
"require": "./dist/integrations/nuxt-module.cjs"
},
"./plain": {
"import": "./dist/core.js",
"require": "./dist/core.cjs"
},
"./api": {
"import": "./dist/api.js",
"require": "./dist/api.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*",
"./dist/index.d.ts"
]
}
},
"files": [
"*.d.ts",
"assets",
"dist"
],
"engines": {
"node": ">=v18.13.0"
},
"scripts": {
"build": "tsup && tsx scripts/post-build-lib.ts",
"build:all": "pnpm build && pnpm -r build",
"eslint": "eslint --ignore-pattern='*.md'",
"lint": "pnpm eslint .",
"fix": "pnpm lint --fix",
"typecheck": "tsc --noEmit",
"test": "vitest --run",
"test:all": "pnpm test && pnpm -r test",
"test:watch": "vitest",
"release": "bumpp package.json --commit --push --tag",
"package-check": "attw --pack .",
"prepare": "husky"
},
"dependencies": {
"@nuxt/kit": "^3.13.2",
"@nuxt/schema": "^3.13.2",
"picocolors": "^1.1.1",
"postcss": "^8.4.47"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@arethetypeswrong/cli": "^0.16.4",
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@playwright/test": "^1.48.1",
"@types/babel__core": "^7.20.5",
"@types/cpx": "^1.5.5",
"@types/etag": "^1.8.3",
"@types/node": "^22.7.7",
"@types/uglify-js": "^3.17.5",
"@unhead/schema": "^1.11.10",
"acorn": "^8.13.0",
"acorn-walk": "^8.3.4",
"bumpp": "^9.7.1",
"cpx": "^1.5.0",
"eslint": "^9.13.0",
"etag": "^1.8.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"playwright": "^1.48.1",
"rimraf": "^6.0.1",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"uglify-js": "^3.19.3",
"vite": "^5.4.9",
"vitest": "^2.1.3"
}
}