-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "@stardust-configs/postcss-config",
"version": "0.3.0",
"description": "Shareable PostCSS config",
"keywords": [
"postcss",
"postcss-config"
],
"homepage": "https://github.com/stardust-configs/postcss-config#readme",
"bugs": "https://github.com/stardust-configs/postcss-config#issues",
"license": "MIT",
"author": "P-Chan",
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/stardust-configs/postcss-config.git"
},
"scripts": {
"build": "tsup",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run build",
"test": "vitest",
"version:major": "standard-version -r major",
"version:minor": "standard-version -r minor",
"version:patch": "standard-version -r patch"
},
"dependencies": {
"postcss-flexbugs-fixes": "5.0.2",
"postcss-preset-env": "9.6.0"
},
"devDependencies": {
"@stardust-configs/prettier-config": "0.2.0",
"@stardust-configs/tsconfig": "0.4.0",
"postcss": "8.4.49",
"postcss-load-config": "4.0.2",
"prettier": "3.4.2",
"standard-version": "9.5.0",
"ts-node": "10.9.2",
"tsup": "7.2.0",
"typescript": "5.7.2",
"vitest": "0.34.6"
},
"peerDependencies": {
"postcss": "^8.0.0"
}
}