-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.97 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
{
"name": "antd-pixel-theme",
"version": "0.1.0",
"description": "Fusion Pixel Font theme presets with a recommended native 12px UI size for Ant Design 6",
"author": "RosApr",
"packageManager": "pnpm@10.26.0",
"keywords": [
"antd",
"ant-design",
"theme",
"pixel",
"pixel-art"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RosApr/antd-pixel-theme.git"
},
"homepage": "https://github.com/RosApr/antd-pixel-theme#readme",
"bugs": {
"url": "https://github.com/RosApr/antd-pixel-theme/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"style",
"CHANGELOG.md",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"sideEffects": [
"./style/*.css"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./style.css": "./style/pixel.css",
"./pixel-font.css": "./style/pixel-font.css"
},
"scripts": {
"build": "tsup",
"demo": "vite --config demo/vite.config.ts",
"demo:build": "vite build --config demo/vite.config.ts",
"demo:pages": "vite build --config demo/vite.config.ts --mode github-pages",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"check": "pnpm run typecheck && pnpm run test",
"prepublishOnly": "pnpm run build && pnpm run check",
"pack:check": "pnpm pack --dry-run"
},
"peerDependencies": {
"antd": ">=6.5.1 <7"
},
"peerDependenciesMeta": {
"antd": {
"optional": false
}
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"antd": "^6.5.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.5.1",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vitest": "^3.0.7"
}
}