-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.55 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
{
"name": "@spearwolf/shae-offscreen-canvas",
"description": "an offscreen canvas element based on the shadow-objects framework",
"version": "0.6.0",
"type": "module",
"license": "Apache-2.0",
"author": {
"name": "Wolfger Schramm",
"email": "wolfger@spearwolf.de",
"url": "https://www.spearwolf.de"
},
"main": "src/bundle.js",
"module": "src/bundle.js",
"exports": {
".": {
"default": "./src/bundle.js"
},
"./shae-offscreen-canvas.js": {
"default": "./src/shae-offscreen-canvas.js"
},
"./shadow-objects.js": {
"default": "./src/shadow-objects.js"
}
},
"sideEffects": [
"src/bundle.js",
"src/shae-offscreen-canvas.js"
],
"scripts": {
"dev": "vite --host",
"test": "vitest --run",
"watch": "vitest",
"build:copyFiles": "node ./build.mjs",
"build:packageJson": "node ../../scripts/makePackageJson.mjs",
"build": "pnpm clean && pnpm build:copyFiles && pnpm build:packageJson",
"clean": "rimraf .npm-pkg",
"publishNpmPkg": "node ../../scripts/publishNpmPkg.mjs .npm-pkg",
"update": "pnpm dlx npm-check --update"
},
"devDependencies": {
"@esm-bundle/chai": "4.3.4-fix.0",
"esbuild-plugin-inline-worker": "catalog:",
"happy-dom": "catalog:",
"lil-gui": "^0.21.0",
"lit-html": "catalog:",
"sinon": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"dependencies": {
"@spearwolf/eventize": "catalog:",
"@spearwolf/shadow-objects": "workspace:*",
"@spearwolf/signalize": "catalog:",
"three": "catalog:"
}
}