forked from mantinedev/postcss-preset-mantine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.76 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
{
"name": "postcss-preset-mantine",
"version": "1.13.0",
"description": "PostCSS preset for Mantine (7.0+) applications",
"main": "dist/preset.js",
"types": "dist/index.d.ts",
"peerDependencies": {
"postcss": ">=8.0.0"
},
"dependencies": {
"postcss-mixins": "^9.0.4",
"postcss-nested": "^6.0.1"
},
"devDependencies": {
"@types/fs-extra": "^11",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/postcss-mixins": "^9.0.0",
"@types/signale": "^1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"esno": "^4.0.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"jest": "^29.5.0",
"new-github-release-url": "^2.0.0",
"open": "^10.0.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"signale": "^1.4.0",
"simple-git": "^3.21.0",
"ts-jest": "^29.1.0",
"tsc": "^2.0.4",
"typescript": "^5.1.3",
"version-next": "^1.0.2"
},
"scripts": {
"build": "tsc --project tsconfig.build.json && echo 'declare module \"postcss-preset-mantine\";' > dist/index.d.ts",
"lint": "eslint src --cache",
"prettier:check": "prettier --check src",
"typecheck": "tsc --noEmit",
"jest": "jest",
"jest:update-snapshots": "jest --updateSnapshot",
"prepublish": "yarn test && yarn build",
"test": "npm run lint && npm run prettier:check && npm run typecheck && npm run jest",
"clean": "rm -rf dist",
"release": "esno scripts/release"
},
"repository": {
"type": "git",
"url": "https://github.com/mantinedev/postcss-preset-mantine"
},
"keywords": [
"postcss",
"mantine",
"react",
"css"
],
"author": "[email protected]",
"license": "MIT",
"packageManager": "[email protected]"
}