-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
{
"name": "unocss-preset-fluid",
"type": "module",
"version": "1.0.2",
"description": "A fluid preset for unocss",
"author": "Renato Moor <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/renatomoor/unocss-preset-fluid"
},
"homepage": "https://renatomoor.github.io/unocss-preset-fluid/",
"keywords": [
"unocss",
"unocss-preset",
"unocss-preset-fluid"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"packageManager": "[email protected]",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "tsc && vite build && api-extractor run",
"release": "release-it",
"test": "vitest",
"coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"dependencies": {
"vue": "^3.3.8"
},
"devDependencies": {
"@antfu/eslint-config": "^1.1.0",
"@microsoft/api-extractor": "^7.38.3",
"@release-it/conventional-changelog": "^8.0.1",
"@types/node": "^20.9.0",
"@vitest/coverage-istanbul": "^1.0.4",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.0.4",
"eslint": "^8.53.0",
"release-it": "^17.0.0",
"typescript": "^5.2.2",
"unocss": "^0.57.3",
"vite": "^4.5.0",
"vitepress": "latest",
"vitest": "^1.0.4"
}
}