-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.22 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.22 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
{
"name": "@statsify/rendering",
"version": "0.0.0",
"types": "./src/index.ts",
"type": "module",
"exports": {
".": {
"types": "./src/index.ts",
"default": "./dist/index.js"
},
"./jsx-runtime": {
"types": "./src/jsx-runtime/index.ts",
"default": "./dist/jsx-runtime/index.js"
}
},
"scripts": {
"build": "swc src --out-dir dist --strip-leading-paths",
"test:types": "tsc --noEmit",
"lint": "eslint"
},
"dependencies": {
"@sentry/node": "^7.118.0",
"@statsify/assets": "workspace:^",
"@statsify/util": "workspace:^",
"@swc/helpers": "^0.5.12",
"axios": "1.7.3",
"skia-canvas": "^2.0.2",
"typedi": "^0.10.0"
},
"imports": {
"#colors": {
"types": "./src/colors/index.ts",
"default": "./dist/colors/index.js"
},
"#intrinsics": {
"types": "./src/intrinsics/index.ts",
"default": "./dist/intrinsics/index.js"
},
"#font": {
"types": "./src/font/index.ts",
"default": "./dist/font/index.js"
},
"#hooks": {
"types": "./src/hooks/index.ts",
"default": "./dist/hooks/index.js"
},
"#jsx": {
"types": "./src/jsx/index.ts",
"default": "./dist/jsx/index.js"
}
}
}