-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.57 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
{
"name": "@gopherium/godmin",
"version": "0.7.0",
"description": "The admin kit for Gopherium projects: host layer for React admin applications on the WordPress Design System.",
"license": "Apache-2.0",
"type": "module",
"packageManager": "pnpm@11.10.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gopherium/godmin.git"
},
"keywords": [
"admin",
"wordpress",
"design-system",
"react",
"gopherium"
],
"files": [
"dist",
"NOTICE",
"patches"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./base.css": "./dist/base.css",
"./patches/*": "./patches/*",
"./router": {
"types": "./dist/router.d.ts",
"default": "./dist/router.js"
},
"./stylelint": {
"types": "./dist/stylelint.d.ts",
"default": "./dist/stylelint.js"
},
"./testing": {
"types": "./dist/testing.d.ts",
"default": "./dist/testing.js"
},
"./vite": {
"types": "./dist/vite.d.ts",
"default": "./dist/vite.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json && cp src/base.css dist/base.css",
"cover": "vitest run --coverage",
"lint": "oxlint",
"lint:css": "stylelint 'src/**/*.css'",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@tanstack/react-router": "^1.170.0",
"@testing-library/react": "^16.3.2",
"@wordpress/style-runtime": ">=0.8.0 <0.9.0",
"@wordpress/theme": ">=1.1.0 <2.0.0",
"@wordpress/ui": ">=0.19.0 <0.20.0",
"react": "^19.2.0",
"stylelint": "^16 || ^17",
"vitest": "^4.1.10"
},
"peerDependenciesMeta": {
"@tanstack/react-router": {
"optional": true
},
"@testing-library/react": {
"optional": true
},
"stylelint": {
"optional": true
},
"vitest": {
"optional": true
}
},
"devDependencies": {
"@tanstack/react-router": "^1.170.18",
"@testing-library/react": "^16.3.2",
"@types/node": "^26.1.2",
"@types/react": "^19.2.17",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.10",
"@wordpress/a11y": "4.52.0",
"@wordpress/element": "8.4.0",
"@wordpress/style-runtime": "0.8.0",
"@wordpress/theme": "1.1.0",
"@wordpress/ui": "0.19.0",
"eslint": "^10.7.0",
"eslint-plugin-jsdoc": "^63.2.0",
"eslint-plugin-sonarjs": "^4.2.0",
"eslint-plugin-tsdoc": "^0.5.2",
"jsdom": "^29.1.1",
"oxlint": "^1.71.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"stylelint": "^17.0.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.65.0",
"vitest": "^4.1.10"
}
}