-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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
{
"name": "@pistonite/celera",
"version": "0.3.2",
"type": "module",
"private": true,
"description": "In-house UI framework",
"homepage": "https://github.com/Pistonite/celera",
"bugs": {
"url": "https://github.com/Pistonite/celera/issues"
},
"license": "MIT",
"author": "Pistonight <pistonknight@outlook.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/Pistonite/celera.git"
},
"dependencies": {
"@pistonite/pure": "^0.29.7",
"i18next": "^26.2.0",
"react-i18next": "^17.0.8"
},
"peerDependencies": {
"@fluentui/react-components": "^9",
"@fluentui/react-icons": "^2",
"react": "^19"
},
"devDependencies": {
"@types/react": "^19.2.14",
"eslint": "^9",
"mono-dev": "github:Pistonight/mono-dev#dist"
},
"files": [
"src/**/*"
],
"exports": {
".": "./src/index.ts"
},
"imports": {
"#components": "./src/components/index.ts",
"#hooks": "./src/hooks/index.ts",
"#i18n": "./src/i18n/index.ts",
"#pref": "./src/pref/index.ts",
"#style": "./src/style/index.ts",
"#util": "./src/util/index.ts"
},
"pistonight/mono-dev": {
"lib": true,
"publish": true
}
}