@velarscript/desktop 0.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@velarscript/desktop",
3
+ "version": "0.10.1",
4
+ "description": "The optional single-project VelarScript Desktop application framework backed by Web, Node capabilities, and system WebViews.",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "files": [
8
+ "dist",
9
+ "native",
10
+ "README.md"
11
+ ],
12
+ "scripts": {
13
+ "clean": "node ../../scripts/clean-package-dist.mjs",
14
+ "build": "npm run clean && tsc -p tsconfig.build.json && node scripts/build-worker.mjs",
15
+ "prepack": "npm run build"
16
+ },
17
+ "engines": {
18
+ "node": ">=24"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/VelarOS-AI/VelarScript.git",
23
+ "directory": "packages/desktop"
24
+ },
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "velar": {
29
+ "extension": {
30
+ "kind": "application",
31
+ "apiVersion": "0.10",
32
+ "manifestKey": "desktop",
33
+ "extends": {},
34
+ "composes": {
35
+ "@velarscript/web": "0.10",
36
+ "@velarscript/node": "0.10"
37
+ }
38
+ }
39
+ },
40
+ "dependencies": {
41
+ "@velarscript/compiler": "0.10.1",
42
+ "@velarscript/node": "0.10.1",
43
+ "@velarscript/web": "0.10.1"
44
+ },
45
+ "exports": {
46
+ ".": {
47
+ "types": "./dist/index.d.ts",
48
+ "default": "./dist/index.js"
49
+ },
50
+ "./compiler": {
51
+ "types": "./dist/compiler.d.ts",
52
+ "default": "./dist/compiler.js"
53
+ },
54
+ "./host": {
55
+ "types": "./dist/host.d.ts",
56
+ "default": "./dist/host.js"
57
+ },
58
+ "./package-host": {
59
+ "types": "./dist/package-host.d.ts",
60
+ "default": "./dist/package-host.js"
61
+ }
62
+ }
63
+ }