-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.74 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
{
"name": "@imput/helium-prism",
"version": "0.1.6",
"description": "Shared UI components of Helium web interfaces for Svelte",
"type": "module",
"packageManager": "pnpm@11.5.0",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/imputnet/helium-prism.git"
},
"bugs": {
"url": "https://github.com/imputnet/helium-prism/issues"
},
"homepage": "https://github.com/imputnet/helium-prism#readme",
"sideEffects": [
"**/*.css",
"**/*.svelte"
],
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
},
"./styles.css": "./dist/styles.css",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"check": "svelte-check --tsconfig ./tsconfig.json",
"dev": "vite",
"generate:index": "deno run --allow-read=src/lib/components --allow-write=src/lib/index.ts scripts/generate-index.ts",
"pack:dry-run": "pnpm pack --dry-run",
"package": "svelte-package --input src/lib --tsconfig ./tsconfig.json && cp src/css/styles.css dist/styles.css",
"prepack": "pnpm run package"
},
"dependencies": {
"ogl": "^1.0.11"
},
"peerDependencies": {
"svelte": ">=5.20.0"
},
"devDependencies": {
"@sveltejs/package": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"svelte": "^5.20.0",
"svelte-check": "^4.0.0",
"typescript": "^5.6.0",
"vite": "^6.0.0"
},
"engines": {
"node": ">=20"
}
}