-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.89 KB
/
package.json
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@easrng/elements",
"version": "0.1.15",
"description": "a tiny framework powered by @preact/signals-core",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/elements.d.ts",
"default": "./dist/elements.js"
},
"./debug": {
"types": "./dist/debug.d.ts",
"default": "./dist/debug.js"
},
"./minify": {
"types": "./dist/minify.d.ts",
"node": "./dist/minify.mjs",
"default": "./dist/minify.js"
},
"./server": {
"types": "./dist/server.d.ts",
"default": "./dist/server.js"
},
"./tiny": {
"types": "./dist/tiny.d.ts",
"default": "./dist/tiny.js"
},
"./typescript": {
"types": "./dist/typescript/index.d.ts",
"require": "./dist/typescript/index.js"
}
},
"scripts": {
"build": "tsx ./tools/build.ts",
"dev": "npm run build -- --dev",
"fmt": "run-p fmt:*",
"fmt:json": "prettier -w '**/*.json'",
"fmt:ts": "xo --fix",
"fuzz": "jsfuzz ./tools/fuzz-loader.cjs",
"lint": "run-p lint:*",
"lint:json": "prettier -c '**/*.json'",
"lint:tsc": "tsc",
"lint:xo": "xo",
"prepublish": "run-s lint build",
"test": "run-p test:*",
"test:minify": "tsx ./tools/minify-test.ts",
"test:stream": "tsx ./tools/stream-test-node/index.ts --stdout | cmp - tools/stream-test-node/expected.txt && echo 'ssr (node + linkedom): all good'"
},
"files": [
"dist",
"typescript"
],
"dependencies": {
"@preact/signals-core": "^1.7.0",
"ixie": "^0.0.10",
"js-tokens": "^9.0.0",
"magic-string": "^0.30.10",
"typescript-template-language-service-decorator": "^2.3.2"
},
"devDependencies": {
"@easrng/elements": "file:.",
"@fastify/pre-commit": "^2.1.0",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@rspack/core": "^0.7.5",
"@types/express": "^4.12.8",
"@types/node": "^20.14.11",
"cli-table3": "^0.6.5",
"esbuild": "^0.23.0",
"esbuild-loader": "^4.2.2",
"express": "^4.19.2",
"hotscript": "^1.0.13",
"jsfuzz": "^1.0.15",
"linkedom": "^0.18.4",
"memfs": "^4.9.3",
"npm-run-all": "^4.1.5",
"p-limit": "^6.1.0",
"prettier": "^3.3.3",
"pretty-bytes": "^6.1.1",
"rolldown": "^0.12.2",
"rollup": "^4.19.0",
"rollup-plugin-esbuild": "^6.1.1",
"tsx": "^4.16.2",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"xo": "^0.59.0",
"zx": "^8.1.4"
},
"author": "easrng",
"repository": {
"type": "git",
"url": "git+https://github.com/easrng/elements.git"
},
"bugs": {
"url": "https://github.com/easrng/elements/issues"
},
"homepage": "https://github.com/easrng/elements#readme",
"pre-commit": "lint",
"esm.sh": {
"bundle": false
},
"packageManager": "[email protected]+sha256.b6fd0bfda555e7e584ad7e56b30c68b01d5a04f9ee93989f4b93ca8473c49c74"
}