-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.44 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
{
"name": "@moser-inc/unocss-preset-moser-labs",
"version": "1.18.5",
"description": "Shared UnoCSS preset for the Moser Labs suite of applications.",
"license": "UNLICENSED",
"homepage": "https://github.com/moser-inc/unocss-preset-moser-labs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/moser-inc/unocss-preset-moser-labs.git"
},
"keywords": [
"unocss",
"unocss-preset"
],
"bugs": {
"url": "https://github.com/moser-inc/unocss-preset-moser-labs/issues"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"lint": "eslint --cache --cache-location ./node_modules/.cache/.eslintcache --max-warnings 0",
"publint": "npx -y publint@latest && npx -y @arethetypeswrong/cli@latest --pack",
"type-check": "tsc --noEmit",
"test": "run-s lint type-check build publint",
"playground:dev": "vite --config ./playground/vite.config.ts",
"playground:build": "vite --config ./playground/vite.config.ts build",
"release": "standard-version",
"semantic-release": "semantic-release",
"prepack": "npm run build"
},
"peerDependencies": {
"unocss": ">= 0.45.0 < 100"
},
"dependencies": {
"@iconify-json/prime": "^1.2.2",
"@iconify/utils": "^2.2.1",
"@unocss/preset-mini": "^65.4.2",
"unocss-preset-prime": "^3.3.2"
},
"devDependencies": {
"@moser-inc/eslint-config": "^1.18.7",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/node": "~22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react-swc": "^3.7.2",
"eslint": "^9.18.0",
"npm-run-all2": "^7.0.2",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sass": "^1.83.4",
"semantic-release": "^24.2.1",
"standard-version": "^9.5.0",
"typescript": "^5.7.3",
"unbuild": "^3.3.1",
"unocss": "^65.4.2",
"vite": "^6.0.11"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
}