-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathpackage.json
57 lines (57 loc) · 1.75 KB
/
package.json
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
{
"name": "@devolutions/iron-remote-gui",
"author": "Nicolas Girot",
"email": "[email protected]",
"contributors": [
"Benoit Cortier",
"Irving Ou",
"Vladislav Nikonov",
"Zacharia Ellaham"
],
"description": "Web Component providing agnostic implementation for Iron Wasm base client",
"version": "0.0.0",
"type": "module",
"private": true,
"scripts": {
"dev": "npm run pre-build && vite",
"build": "npm run pre-build && vite build",
"build-alone": "vite build",
"pre-build": "node ./pre-build.js",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:dist": "tsc ./dist/index.d.ts --noEmit",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint src/**",
"format": "prettier --write ."
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.21.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tsconfig/svelte": "^5.0.4",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-svelte": "^3.0.2",
"globals": "^16.0.0",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.1.0",
"svelte": "~5.20.2",
"svelte-check": "^4.1.4",
"tslib": "^2.4.1",
"typescript": "~5.7.2",
"vite": "^6.2.0",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-top-level-await": "^1.2.2",
"vite-plugin-wasm": "^3.1.0"
},
"dependencies": {
"rxjs": "^6.6.7",
"svelte-eslint-parser": "^1.0.0",
"ua-parser-js": "^1.0.33"
}
}