-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.62 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.62 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": "@next2d/player",
"version": "3.1.0",
"description": "Experience the fast and beautiful anti-aliased rendering of WebGL. You can create rich, interactive graphics, cross-platform applications and games without worrying about browser or device compatibility.",
"author": "Toshiyuki Ienaga<ienaga@next2d.app> (https://github.com/ienaga/)",
"license": "MIT",
"homepage": "https://next2d.app",
"bugs": "https://github.com/Next2D/Player/issues",
"main": "src/index.js",
"bundle": "next2d.js",
"type": "module",
"types": "src/index.d.ts",
"exports": {
".": {
"import": "./src/index.js",
"require": "./src/index.js"
}
},
"keywords": [
"Next2D",
"Next2D Player"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Next2D/Player.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"start": "vite --host",
"lint": "eslint src/**/*.ts packages/**/*.ts",
"test": "vitest",
"test:e2e": "playwright test --config=e2e/playwright.config.ts",
"test:e2e:webgl": "playwright test --config=e2e/playwright.config.ts --project=webgl",
"test:e2e:webgpu": "playwright test --config=e2e/playwright.config.ts --project=webgpu",
"test:e2e:ui": "playwright test --config=e2e/playwright.config.ts --ui",
"test:e2e:update": "playwright test --config=e2e/playwright.config.ts --update-snapshots",
"test:e2e:update:webgl": "playwright test --config=e2e/playwright.config.ts --project=webgl --update-snapshots",
"test:e2e:update:webgpu": "playwright test --config=e2e/playwright.config.ts --project=webgpu --update-snapshots",
"clean": "node ./scripts/clean.js",
"build:worker": "rollup -c rollup.renderer.worker.config.js && rollup -c rollup.unzip.worker.config.js",
"build:vite": "node ./scripts/version.js && vite build",
"publish:dist": "npm run clean && node ./scripts/version.js && npm run build:worker && tsc && node ./scripts/worker.js && vite build && node ./scripts/publish.js"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Next2D"
},
"dependencies": {
"fflate": "^0.8.2",
"htmlparser2": "^10.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vitest/web-worker": "^4.1.0",
"@webgpu/types": "^0.1.69",
"eslint": "^10.0.3",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.4.0",
"jsdom": "^28.1.0",
"rollup": "^4.59.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vitest": "^4.1.0",
"vitest-webgl-canvas-mock": "^1.1.0",
"xml2js": "^0.6.2"
},
"peerDependencies": {
"@next2d/cache": "file:packages/cache",
"@next2d/core": "file:packages/core",
"@next2d/display": "file:packages/display",
"@next2d/events": "file:packages/events",
"@next2d/filters": "file:packages/filters",
"@next2d/geom": "file:packages/geom",
"@next2d/media": "file:packages/media",
"@next2d/net": "file:packages/net",
"@next2d/render-queue": "file:packages/render-queue",
"@next2d/renderer": "file:packages/renderer",
"@next2d/text": "file:packages/text",
"@next2d/texture-packer": "file:packages/texture-packer",
"@next2d/ui": "file:packages/ui",
"@next2d/webgl": "file:packages/webgl",
"@next2d/webgpu": "file:packages/webgpu"
}
}