-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.33 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.33 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
{
"name": "@e280/sly",
"version": "0.3.0-10",
"description": "web shadow views",
"license": "MIT",
"type": "module",
"files": [
"x",
"s"
],
"main": "./x/index.js",
"exports": {
".": "./x/index.js",
"./dom": "./x/dom/index.js",
"./loader": "./x/loader/index.js",
"./loot": "./x/loot/index.js",
"./op": "./x/op/index.js",
"./view": "./x/view/index.js"
},
"scripts": {
"build": "rm -rf x && mkdir x && ln -s '$(realpath s)' x/s && ln -s '$(realpath assets)' x/assets && tsc && scute -v",
"start": "octo 'tsc -w' 'scute -wv' 'node --watch x/test.js' 'http-server x'",
"count": "find s -path '*/_archive' -prune -o -name '*.ts' -exec wc -l {} +",
"test": "node x/test.js"
},
"peerDependencies": {
"lit": "^3.3.2"
},
"dependencies": {
"@e280/strata": "^0.3.0-2",
"@e280/stz": "^0.2.24"
},
"devDependencies": {
"@e280/octo": "^0.1.0-12",
"@e280/science": "^0.1.8",
"@e280/scute": "^0.3.0-1",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.3"
},
"author": "Chase Moskal <chasemoskal@gmail.com>",
"homepage": "https://github.com/e280/sly#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/e280/sly.git"
},
"bugs": {
"url": "https://github.com/e280/sly/issues"
},
"keywords": [
"lit",
"views",
"shadow views",
"shadow dom",
"components"
]
}