-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.69 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.69 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
{
"name": "com.sweaxizone.metro",
"version": "1.0.0",
"type": "module",
"files": [
"/dist"
],
"scripts": {
"build": "tsc && npm run build:copy",
"build:copy": "copy-and-watch \"src/**/*.{json,css,svg,png,jpg,jpeg,webp,gif}\" dist",
"doc": "npx typedoc",
"watch": "run-p watch:ts watch:copy",
"watch:ts": "tsc --watch",
"watch:copy": "copy-and-watch --watch \"src/**/*.{json,css,svg,png,jpg,jpeg,webp,gif}\" dist",
"prepublishOnly": "npm run build"
},
"exports": {
"./components": {
"typedoc": "./src/components/index.ts",
"types": "./dist/components/index.d.ts",
"default": "./dist/components/index.js"
},
"./enum": {
"typedoc": "./src/enum/index.ts",
"types": "./dist/enum/index.d.ts",
"default": "./dist/enum/index.js"
},
"./fonts": {
"typedoc": "./src/fonts/index.ts",
"types": "./dist/fonts/index.d.ts",
"default": "./dist/fonts/index.js"
},
"./layout": {
"typedoc": "./src/layout/index.ts",
"types": "./dist/layout/index.d.ts",
"default": "./dist/layout/index.js"
},
"./liveTiles": {
"typedoc": "./src/liveTiles/index.ts",
"types": "./dist/liveTiles/index.d.ts",
"default": "./dist/liveTiles/index.js"
},
"./theme": {
"typedoc": "./src/theme/index.ts",
"types": "./dist/theme/index.d.ts",
"default": "./dist/theme/index.js"
},
"./utils": {
"typedoc": "./src/utils/index.ts",
"types": "./dist/utils/index.d.ts",
"default": "./dist/utils/index.js"
}
},
"description": "Metro design components for React.js.",
"repository": {
"url": "https://github.com/MatheusDS4/metro.js.git"
},
"license": "Apache-2.0",
"keywords": [
"metro",
"ui"
],
"author": "Hydroper <HydroperFox@gmail.com>",
"dependencies": {
"@floating-ui/dom": "^1.7.1",
"@fontsource/noto-sans": "^5.2.10",
"@fontsource/source-code-pro": "^5.2.7",
"assert": "^2.1.0",
"com.sweaxizone.color": "^1",
"com.sweaxizone.draggable": "^1",
"com.sweaxizone.inputaction": "^1",
"com.sweaxizone.w3c.extension": "^1",
"extend": "^3.0.2",
"focus-lock": "^1.3.6",
"getoffset": "^0.6.4",
"gsap": "^3.13.0",
"jquery": "^3.7.1",
"rectangle-overlap": "^2.0.0",
"styled-components": "^6.1.16"
},
"peerDependencies": {
"react": ">=19.0.0"
},
"devDependencies": {
"@types/assert": "^1.5.11",
"@types/extend": "^3.0.4",
"@types/jquery": "^3.5.32",
"@types/react": "^19.0.0",
"copy-and-watch": "^0.1.8",
"npm-run-all": "^4.1.5",
"typedoc": "^0.28.7",
"typescript": "~5.6.2",
"vite": "^6.1.0"
},
"publishConfig": {
"access": "public"
}
}