-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.61 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.61 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
{
"name": "@substrate-system/hyperstream",
"version": "0.0.3",
"description": "Stream html by CSS selector.",
"type": "module",
"directories": {
"test": "test"
},
"main": "dist/index.js",
"files": [
"./dist/*"
],
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js"
},
"scripts": {
"lint": "eslint \"./**/*.{ts,js}\"",
"test": "cd test && esbuild --format=esm --bundle --platform=node --packages=external index.ts | node --input-type=module",
"example": "cd example && esbuild --format=esm --bundle --platform=node --packages=external index.ts | node --input-type=module",
"build-example": "mkdir -p ./public && rm -rf ./public/* && vite --mode production --base=\"/hyperstream/\" build",
"start": "vite",
"build-esm": "esbuild src/**/*.ts --format=esm --metafile=dist/meta.json --keep-names --tsconfig=tsconfig.build.json --outdir=./dist --outbase=src --sourcemap && tsc --emitDeclarationOnly --project tsconfig.build.json --outDir dist",
"build": "mkdir -p ./dist && rm -rf ./dist/* && npm run build-esm",
"toc": "markdown-toc --maxdepth 3 -i README.md",
"preversion": "npm run lint",
"version": "auto-changelog -p --template keepachangelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md",
"postversion": "git push --follow-tags && npm publish",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@substrate-system/stream": "^0.0.9",
"css-select": "^6.0.0",
"domhandler": "^5.0.3",
"parse5": "^8.0.0",
"parse5-htmlparser2-tree-adapter": "^8.0.0"
},
"devDependencies": {
"@substrate-system/button": "^0.0.35",
"@substrate-system/css-normalize": "^0.0.13",
"@substrate-system/debug": "^0.9.32",
"@substrate-system/tapout": "^0.0.37",
"@substrate-system/tapzero": "^0.10.16",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"auto-changelog": "^2.4.0",
"esbuild": "^0.27.3",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"markdown-toc": "^1.2.0",
"tap-spec": "^5.0.0",
"tsx": "^4.21.0",
"typescript": "^5.8.2",
"vite": "^8.0.0"
},
"author": "nichoth <nichoth@gmail.com> (https://nichoth.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/substrate-system/hyperstream.git"
},
"keywords": [
"stream",
"html",
"template",
"build",
"tool"
],
"bugs": {
"url": "https://github.com/substrate-system/hyperstream/issues"
},
"homepage": "https://github.com/substrate-system/hyperstream",
"license": "SEE LICENSE IN LICENSE"
}