-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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-split-colors",
"version": "0.3.0",
"description": "PostCSS Plugin to destructure colors in custom properties",
"author": "Mitsunee",
"license": "MIT",
"repository": "mitsunee/postcss-split-colors",
"main": "src/index.ts",
"scripts": {
"format": "prettier -w",
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.json",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"build:lib": "node build.mjs",
"build:types": "tsc -p tsconfig.build.json",
"build:pkgjson": "clear-package-json package.json -o dist/package.json",
"build": "pnpm build:lib && pnpm build:types && pnpm build:pkgjson",
"demo": "postcss --config demo/postcss.config.js demo/demo.css",
"demo:full": "postcss --config demo/postcss.config.js demo/full-test.css"
},
"files": [
"*.d.ts",
"index.js"
],
"dependencies": {
"@csstools/css-color-parser": "^1.2.0",
"@csstools/css-parser-algorithms": "^2.1.1",
"@csstools/css-tokenizer": "^2.1.1",
"colord": "^2.9.3"
},
"peerDependencies": {
"postcss": ">=8.4.6"
},
"devDependencies": {
"@types/node": "^20.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"clean-publish": "^4.2.0",
"esbuild": "^0.17.19",
"eslint": "^8.40.0",
"eslint-config-foxkit": "^2.1.1",
"eslint-config-prettier": "^8.8.0",
"postcss": "^8.4.23",
"postcss-cli": "^10.1.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"engines": {
"node": "^14 || ^16 || ^18 || >=20"
},
"clean-publish": {
"files": [
"demo"
],
"packageManager": "pnpm",
"withoutPublish": true,
"tempDir": "tmp"
},
"publishConfig": {
"access": "public",
"main": "index.js"
}
}