-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 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
{
"name": "rainbow-line",
"description": "A custom element that displays a cut line animated with rainbow colors",
"version": "0.4.0",
"type": "module",
"license": "Apache-2.0",
"author": {
"name": "Wolfger Schramm",
"email": "[email protected]",
"url": "https://www.spearwolf.de"
},
"main": "bundle.js",
"module": "bundle.js",
"exports": {
".": {
"default": "./bundle.js"
},
"./bundle.js": {
"default": "./bundle.js"
},
"./RainbowLineElement.js": {
"default": "./src/RainbowLineElement.js"
},
"./RainbowLineWorkerDisplay.js": {
"default": "./src/RainbowLineWorkerDisplay.js"
},
"./rainbow-line.js": {
"default": "./rainbow-line.js"
},
"./rainbow-line-worker.js": {
"default": "./rainbow-line-worker.js"
}
},
"scripts": {
"dev": "vite",
"build": "pnpm node scripts/build.mjs",
"build:pkg:prepare": "pnpm node ./scripts/buildPackage.mjs",
"build:pkg:json": "pnpm node ../../scripts/makePackageJson.mjs",
"build:pkg:clean": "pnpm exec rimraf .npm-pkg",
"clean": "pnpm exec rimraf dist rainbow-line.js rainbow-line.worker.js .npm-pkg",
"update": "pnpm dlx npm-check --update",
"buildNpmPkg": "pnpm exec run-s build:pkg:clean build:pkg:prepare build:pkg:json",
"publishNpmPkg": "pnpm node ../../scripts/publishNpmPkg.mjs .npm-pkg"
},
"devDependencies": {
"esbuild-plugin-inline-worker": "^0.1.1",
"vite": "^6.0.3"
},
"dependencies": {
"@spearwolf/eventize": "^4.0.1",
"@spearwolf/offscreen-display": "workspace:*"
}
}