-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.05 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
{
"name": "@nitrots/nitro-renderer",
"description": "Javascript library for rendering Nitro in the browser using PixiJS",
"version": "2.1.0",
"private": true,
"packageManager": "yarn@4.18.0",
"type": "module",
"workspaces": [
"packages/*"
],
"resolutions": {
"pako": "3.0.1",
"pixi.js": "8.20.1",
"vite": "8.2.2",
"vitest": "5.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/duckietm/Octane-Renderer.git"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/duckietm/Octane-Renderer/issues"
},
"homepage": "https://github.com/duckietm/Octane-Renderer",
"scripts": {
"build": "vite build",
"compile": "tsc --project ./tsconfig.json --noEmit false",
"compile:fast": "tsgo --project ./tsconfig.json --noEmit",
"eslint": "eslint ./src ./packages/*/src",
"eslint-fix": "eslint ./src --fix",
"test": "vitest run",
"test:e2e:inventory": "vitest run --config vitest.e2e.config.ts packages/communication/src/e2e/inventory.e2e.test.ts",
"test:e2e:login-reconnect": "vitest run --config vitest.e2e.config.ts packages/communication/src/e2e/loginReconnect.e2e.test.ts",
"test:e2e:messenger": "vitest run --config vitest.e2e.config.ts packages/communication/src/e2e/messenger.e2e.test.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"main": "./index",
"dependencies": {
"@thumbmarkjs/thumbmarkjs": "^1.11.0",
"gifuct-js": "^2.1.2",
"howler": "^2.2.4",
"pixi-filters": "^6.1.5",
"pixi.js": "8.20.1",
"strip-json-comments": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-typescript": "^12.3.0",
"@types/howler": "^2.2.13",
"@types/node": "^25.5.0",
"@typescript/native-preview": "^7.0.0-dev.20260707.2",
"@vitest/coverage-v8": "5.0.0",
"eslint": "^10.10.0",
"jsdom": "30.0.1",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.69.0",
"vite": "8.2.2",
"vitest": "5.0.0"
}
}