-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.71 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.71 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
{
"name": "@mateuszjs/magic-render",
"description": "Initial version of visual editor",
"version": "0.0.0-development",
"author": "Mateusz Walendzik",
"engines": {
"node": "^22.14.0 || >=24.10.0"
},
"sideEffects": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"release": {
"branches": [
"main",
{
"name": "next",
"prerelease": true
}
]
},
"scripts": {
"start": "export NODE_ENV=development && webpack serve --mode development",
"build": "rm -rf lib lib-test && export NODE_ENV=production && tsc --project tsconfig.build.json --emitDeclarationOnly && webpack",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test-e2e": "npx playwright test",
"format": "eslint --fix \"src/**/*.{ts,js}\" \"integration-tests/**/*.{ts,js}\"",
"postinstall": "[ -f node_modules/.bin/patch-package ] && patch-package || true"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.21.0",
"@playwright/test": "^1.59.0",
"@stylistic/eslint-plugin-js": "^4.2.0",
"@tsconfig/recommended": "^1.0.8",
"@types/fontkit": "^2.0.8",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.9",
"@types/opentype.js": "^1.3.8",
"@types/paper": "^0.11.14",
"@types/svg-parser": "^2.0.6",
"@types/wawoff2": "^1.0.2",
"@webgpu/types": "^0.1.65",
"eslint": "^9.28.0",
"html-webpack-plugin": "^5.6.3",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"patch-package": "^8.0.1",
"semantic-release": "^25.0.3",
"ts-jest": "^29.2.6",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"zigar-compiler": "0.14.1",
"zigar-loader": "0.14.1",
"zigar-runtime": "0.14.1"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./lib/types/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.mjs"
},
"./types": {
"types": "./lib/types/types.d.ts",
"import": "./lib/types.mjs",
"require": "./lib/types.mjs"
}
},
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mateuszJS/magic-render.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/mateuszJS/magic-render/issues"
},
"homepage": "https://github.com/mateuszJS/magic-render#readme",
"files": [
"lib/**/*"
],
"dependencies": {
"opentype.js": "^1.3.4",
"paper": "^0.12.18",
"svg-parser": "^2.0.4"
}
}