-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.07 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 4.07 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@virtualdisplay.io/client",
"description": "TypeScript-first 3D model integration library with iframe-based architecture",
"version": "3.7.0",
"author": "Virtualdisplay <support@virtualdisplay.io>",
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Edge versions"
],
"bugs": {
"url": "https://github.com/virtualdisplay-io/client/issues"
},
"bundledDependencies": [
"@virtualdisplay-io/logger"
],
"dependencies": {
"@virtualdisplay-io/logger": "1.2.0",
"ajv": "8.17.1"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@virtualdisplay-io/shared-config": "^1.4.0",
"@vitest/coverage-v8": "^3.2.4",
"conventional-changelog-conventionalcommits": "9.1.0",
"eslint": "^9.32.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-unicorn": "^60.0.0",
"globals": "^16.3.0",
"jsdom": "^26.1.0",
"markdownlint-cli2": "^0.18.1",
"markdownlint-cli2-formatter-pretty": "^0.0.8",
"prettier": "^3.6.2",
"semantic-release": "^24.2.7",
"terser": "^5.43.1",
"typescript": "^5.8.3",
"vite": "^7.0.6",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/virtualdisplay.client.es.js",
"require": "./dist/virtualdisplay.client.cjs.js"
}
},
"files": [
"dist",
"schemas",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"homepage": "https://github.com/virtualdisplay-io/client#readme",
"keywords": [
"3d",
"iframe",
"models",
"typescript",
"visualization",
"webgl"
],
"license": "MIT",
"main": "dist/virtualdisplay.client.cjs.js",
"module": "dist/virtualdisplay.client.es.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/virtualdisplay-io/client.git"
},
"scripts": {
"analyze": "vite-bundle-visualizer --template treemap --output stats.html --open false",
"build": "tsc -p tsconfig.build.json && vite build",
"coverage": "vitest run --coverage --reporter=verbose",
"coverage:feature": "vitest run test/feature --coverage --reporter=verbose",
"coverage:integration": "vitest run test/integration --coverage --reporter=verbose",
"coverage:unit": "vitest run test/unit --coverage --reporter=verbose",
"dev": "vite build --watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "pnpm run lint:eslint && pnpm run lint:md && pnpm run lint:types && pnpm run lint:format",
"lint:eslint": "eslint .",
"lint:eslint:fix": "eslint . --fix",
"lint:fix": "pnpm run lint:eslint:fix && pnpm run lint:md:fix && pnpm run lint:format:fix && npx fixpack",
"lint:format": "prettier --check .",
"lint:format:fix": "prettier --write .",
"lint:md": "markdownlint-cli2 '**/*.md' --config .markdownlint-cli2.jsonc",
"lint:md:fix": "markdownlint-cli2 '**/*.md' --config .markdownlint-cli2.jsonc --fix",
"lint:types": "tsc --noEmit",
"prepare": "node -e \"if (!process.env.CI) require('child_process').execSync('pnpm build', {stdio: 'inherit'})\"",
"release": "semantic-release",
"test": "vitest run",
"test:feature": "vitest run test/feature",
"test:integration": "vitest run test/integration",
"test:unit": "vitest run test/unit",
"test:watch": "vitest",
"type-check": "tsc --noEmit"
},
"type": "module",
"types": "dist/index.d.ts"
}