-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.42 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.42 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
{
"name": "@pistonite/celera",
"version": "0.1.4",
"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>",
"files": [
"dist/**/*",
"src/**/*"
],
"pistonight/mono-dev": {
"lib": true,
"publish": true
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/_dts_/src/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pistonite/celera.git"
},
"devDependencies": {
"@types/react": "^19.2.14",
"eslint": "^9",
"mono-dev": "github:Pistonight/mono-dev#dist"
},
"peerDependencies": {
"@fluentui/react-components": "^9",
"@fluentui/react-icons": "^2",
"react": "^19"
},
"dependencies": {
"@pistonite/pure": "^0.29.5",
"i18next": "^26.0.8",
"react-i18next": "^17.0.4"
},
"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"
}
}