-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.77 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.77 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
106
107
108
109
110
111
112
113
114
115
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@asd14/gruvbox-react",
"version": "0.1.0",
"description": "",
"license": "Apache-2.0",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"nx": {
"tags": [
"type:react-lib"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/asd-xiv/gruvbox-react.git"
},
"files": [
"dist"
],
"type": "module",
"exports": {
"./hooks": {
"import": "./dist/esm/hooks/index.js",
"require": "./dist/cjs/hooks/index.js",
"types": "./dist/types/hooks/index.d.ts"
},
"./utils": {
"import": "./dist/esm/utils/index.js",
"require": "./dist/cjs/utils/index.js",
"types": "./dist/types/utils/index.d.ts"
},
"./icons-lucide": {
"import": "./dist/esm/icons/lucide.js",
"require": "./dist/cjs/icons/lucide.js",
"types": "./dist/types/icons/lucide.d.ts"
},
"./icons-nerd": {
"import": "./dist/esm/icons/nerd.js",
"require": "./dist/cjs/icons/nerd.js",
"types": "./dist/types/icons/nerd.d.ts"
},
"./ui": {
"import": "./dist/esm/ui/index.js",
"require": "./dist/cjs/ui/index.js",
"types": "./dist/types/ui/index.d.ts"
},
".": {
"style": "./dist/styles/index.css"
},
"./package.json": "./package.json"
},
"scripts": {
"----UTIL": "",
"prepare:githooks": "git config --local core.hooksPath .githooks",
"format": "eslint --fix .",
"----CODE-ANALYSIS": "",
"lint": "eslint .",
"typecheck:code": "tsc --noEmit --project tsconfig.lib.json",
"typecheck:configs": "tsc --noEmit --project tsconfig.dev.json",
"typecheck:test": "tsc --noEmit --project tsconfig.test.json",
"typecheck": "npm run typecheck:code && npm run typecheck:configs && npm run typecheck:test",
"unit-test": "node --import tsx --import ./jsdom.config.js --test 'src/**/*.test.ts'",
"---BUILD": "",
"build:lock": "pu git-has-changed package.json --since HEAD~1 && npm install --no-workspaces --package-lock-only",
"build:types": "tsc --emitDeclarationOnly --project tsconfig.lib.json",
"build:src:esm": "swc src --out-dir dist/esm --strip-leading-paths",
"build:src:cjs": "swc src --out-dir dist/cjs -C module.type=commonjs --strip-leading-paths",
"build:fonts": "mkdir -p dist/styles && cp -rf src/design-system/fonts dist/styles",
"build:css": "mkdir -p dist/styles && postcss src/design-system/index.css -o dist/styles/index.css",
"build": "npm run build:css && npm run build:fonts && npm run build:src:esm && npm run build:src:cjs && npm run build:types"
},
"dependencies": {
"@asd14/node-utils": "^2.0.0",
"@radix-ui/react-slot": "^1.2.3",
"@swc/helpers": "^0.5.17",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1"
},
"devDependencies": {
"@asd14/eslint-config": "^14.4.0",
"@asd14/prettier-config": "^1.1.0",
"@asd14/ts-config": "^1.1.0",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@semantic-release/git": "^10.0.1",
"@swc/cli": "^0.7.8",
"@swc/core": "^1.13.5",
"@testing-library/react": "^16.3.0",
"@types/jsdom": "^27.0.0",
"@types/node": "^24.6.0",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.36.0",
"jsdom": "^27.0.0",
"lucide-react": "^0.544",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.1",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"semantic-release": "^24.2.9",
"tsx": "^4.20.6",
"typescript": "^5.9.2"
},
"peerDependencies": {
"lucide-react": "^0.544",
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
}
}