-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "@brendon1555/panda-cx-deduplicator",
"version": "0.1.0",
"description": "A drop in replacement for the PandaCSS `cx` function with deduplication of atomic classes",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Brendon Lees <[email protected]>",
"publishConfig": {
"access": "public"
},
"keywords": [
"panda",
"css",
"pandacss",
"styling",
"atomic",
"cx"
],
"repository": {
"type": "git",
"url": "git+https://github.com/brendon1555/panda-cx-deduplicator.git"
},
"bugs": {
"url": "https://github.com/brendon1555/panda-cx-deduplicator/issues"
},
"scripts": {
"test": "vitest",
"build": "tsup src/index.ts --format=esm,cjs --dts",
"lint": "eslint . --ext .ts",
"prettier": "prettier --check .",
"prettier-fix": "prettier --write ."
},
"files": [
"dist"
],
"peerDependencies": {
"@brendon1555/panda-preset-unique-utilities": "^0.1.0",
"@pandacss/dev": "^0.15.5"
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.4",
"eslint": "^8.50.0",
"prettier": "^3.0.3",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}