-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.49 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-react",
"version": "0.1.2",
"description": "sly's react adapters",
"license": "MIT",
"type": "module",
"main": "./x/index.js",
"exports": {
".": "./x/index.js"
},
"files": [
"x",
"s"
],
"peerDependencies": {
"@e280/sly": "^0.2.2",
"lit": "^3.3.1",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@e280/science": "^0.1.4",
"@e280/scute": "^0.1.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.3"
},
"scripts": {
"build": "run-s _clean _ln _tsc _scute",
"start": "octo 'scute -vw' 'tsc -w' 'node --watch x/tests.test.js' 'http-server x'",
"count": "find s -path '*/_archive' -prune -o -name '*.ts' -exec wc -l {} +",
"test": "node x/tests.test.js",
"test-inspect": "node inspect x/tests.test.js",
"_clean": "rm -rf x && mkdir x",
"_tsc": "tsc",
"_scute": "scute -v",
"_ln": "run-s _ln:s _ln:assets",
"_ln:s": "ln -s \"$(realpath s)\" x/s",
"_ln:assets": "ln -s \"$(realpath assets)\" x/assets",
"_lnx:stz": "rm -rf node_modules/@e280/stz && ln -s \"$(realpath ../stz)\" node_modules/@e280/stz"
},
"author": "Chase Moskal <chasemoskal@gmail.com>",
"homepage": "https://github.com/e280/sly-react#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/e280/sly-react.git"
},
"bugs": {
"url": "https://github.com/e280/sly-react/issues"
},
"keywords": [
"sly",
"react-adapter"
]
}