-
-
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.46 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.46 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": "miso-lynx",
"version": "1.9.0",
"description": "miso-lynx: A tasty Haskell mobile framework",
"scripts": {
"clean": "tsc --build --clean && find ts -name '*~' -or -name '*.js' -delete",
"watch": "tsc --project tsconfig.lib.json --watch",
"build": "bun build --outfile=js/miso-lynx.js ./ts/miso-lynx.ts --target=browser --minify-whitespace",
"js": "bun run build",
"bundle": "rspack build"
},
"type": "module",
"module": "ts/miso-lynx.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/dmjio/miso-lynx.git"
},
"keywords": [
"miso",
"virtual-dom",
"haskell"
],
"author": "dmijo",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dmjio/miso-lynx/issues"
},
"prettier": {
"singleQuote": true,
"printWidth": 100,
"quoteProps": "preserve"
},
"homepage": "https://haskell-miso.org",
"devDependencies": {
"@happy-dom/global-registrator": "^17.6.3",
"prettier": "3.5.3",
"@types/bun": "latest"
},
"files": [
"ts/miso-lynx.ts",
"ts/miso/context/lynx.ts",
"ts/miso/types.ts",
"package.json",
"README.md"
],
"dependencies": {
"@lcov-viewer/cli": "^1.3.0",
"@lynx-js/template-webpack-plugin": "0.6.4",
"@lynx-js/type-element-api": "0.0.3",
"@lynx-js/types": "^3.6.0",
"@rspack/cli": "^1.7.0",
"@rspack/core": "^1.7.0",
"jsbi": "^4.3.2",
"text-encoding": "^0.7.0",
"typescript": "^5.9.3"
}
}