-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.36 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.36 KB
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
{
"name": "postcss-color-scheme",
"version": "2.1.0",
"description": "postcss plugin for handling prefers-color-scheme more gracefully",
"type": "module",
"main": "lib/postcss.js",
"types": "types/postcss.d.ts",
"exports": {
".": {
"types": "./types/postcss.d.ts",
"import": "./lib/postcss.js",
"default": "./lib/postcss.js"
},
"./tailwind.css": "./lib/tailwind.css"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"lib",
"types"
],
"license": "MIT",
"keywords": [
"postcss-plugin",
"postcss",
"plugin",
"theme",
"dark",
"color",
"scheme",
"mode"
],
"author": {
"email": "vnphanquang@gmail.com",
"name": "Quang Phan",
"url": "https://github.com/vnphanquang"
},
"homepage": "https://github.com/vnphanquang/postcss-color-scheme",
"bugs": {
"url": "https://github.com/vnphanquang/postcss-color-scheme/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vnphanquang/postcss-color-scheme.git",
"directory": "package"
},
"scripts": {
"prepublishOnly": "pnpm dts",
"dts": "dts-buddy --write && publint",
"format": "prettier --write .",
"lint": "eslint lib/**/*",
"test": "vitest --coverage",
"ci:test:units": "vitest run tests/units --coverage --reporter=junit --outputFile=./coverage/junit.xml",
"ci:test:integrations": "vitest run tests/vite tests/tailwind",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "changeset publish && pnpm install"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@types/node": "^22.10.0",
"@vitest/coverage-istanbul": "^2.1.6",
"@vitest/ui": "^2.1.6",
"@vnphanquang/eslint-config": "^3.0.1",
"dedent": "^1.5.3",
"dts-buddy": "^0.5.3",
"eslint": "^9.15.0",
"postcss": "^8.4.49",
"prettier": "^3.4.1",
"prettier-plugin-embed": "^0.4.15",
"publint": "^0.2.12",
"typescript": "^5.7.2",
"vitest": "^2.1.6"
},
"packageManager": "pnpm@9.12.3",
"devEngines": {
"runtime": [
{
"name": "node",
"version": ">= 22.0.0",
"onFail": "error"
}
],
"packageManager": [
{
"name": "npm",
"version": ">=10.9.0",
"onFail": "ignore"
},
{
"name": "pnpm",
"version": ">=9.0.0",
"onFail": "error"
}
]
},
"volta": {
"node": "22.11.0"
}
}