-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.95 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "alien-lit",
"type": "module",
"version": "1.2.1",
"description": "Fine-grained reactive state for Lit using alien-signals. Ultra-lightweight, zero-boilerplate reactivity for Lit web components.",
"author": "Saman Taghavi (https://github.com/saman-taghavi)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/saman-taghavi/alien-lit.git"
},
"homepage": "https://saman-taghavi.github.io/alien-lit/",
"keywords": [
"lit",
"lit-element",
"alien-signals",
"signals",
"reactive",
"state-management",
"web-components",
"fine-grained",
"reactivity",
"lightweight",
"typescript",
"performance"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/saman-taghavi"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist",
"skills"
],
"scripts": {
"build": "tsdown",
"prepack": "pnpm build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"changelog": "changelogen",
"release": "changelogen --release --push",
"docs:dev": "vitepress dev docs",
"docs:build": "node scripts/generate-og-image.mjs && vitepress build docs && node scripts/generate-sitemap.mjs",
"docs:preview": "vitepress preview docs"
},
"peerDependencies": {
"alien-signals": "^3.0.0",
"lit": "^2.0.0 || ^3.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@lit-labs/signals": "^0.3.0",
"alien-signals": "^3.1.2",
"changelogen": "^0.6.2",
"eslint": "^9.17.0",
"jsdom": "^26.0.0",
"lit": "^3.2.1",
"sharp": "^0.35.2",
"tsdown": "^0.22.2",
"typescript": "^5.7.2",
"vitepress": "^1.6.4",
"vitest": "^3.0.0"
}
}