-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.18 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.18 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
75
76
77
78
79
{
"name": "stage1",
"version": "0.10.0",
"description": "High-performance JavaScript micro framework",
"repository": "github:maxmilton/stage1",
"bugs": "https://github.com/maxmilton/stage1/issues",
"author": "Max Milton <max@2okki.com>",
"license": "MIT",
"sideEffects": false,
"type": "module",
"main": "dist/index.js",
"browser": "dist/browser.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"bun": "./src/index.ts",
"default": "./dist/index.js"
},
"./macro": {
"types": "./dist/index.d.ts",
"default": "./dist/macro.js"
},
"./browser": {
"types": "./dist/index.d.ts",
"bun": "./src/browser/index.ts",
"import": "./dist/browser.mjs",
"require": "./dist/browser.js"
},
"./reconcile/keyed": {
"types": "./dist/index.d.ts",
"bun": "./src/reconcile/keyed.ts",
"default": "./dist/reconcile/keyed.js"
},
"./reconcile/non-keyed": {
"types": "./dist/index.d.ts",
"bun": "./src/reconcile/non-keyed.ts",
"default": "./dist/reconcile/non-keyed.js"
},
"./reconcile/reuse-nodes": {
"types": "./dist/index.d.ts",
"bun": "./src/reconcile/reuse-nodes.ts",
"default": "./dist/reconcile/reuse-nodes.js"
},
"./fast": "./src/fast/index.ts",
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "bun build.ts",
"lint": "bun lint:fmt && bun lint:js && bun lint:ts",
"lint:fmt": "biome check",
"lint:js": "eslint",
"lint:ts": "tsc --noEmit",
"test": "bun test --only-failures",
"test:ci": "bun test --coverage --rerun-each=30",
"test:e2e": "playwright test"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@eslint/js": "9.39.2",
"@maxmilton/eslint-config": "0.3.0",
"@maxmilton/test-utils": "0.0.14",
"@playwright/test": "1.58.1",
"@types/bun": "1.3.8",
"dts-buddy": "0.6.2",
"eslint": "9.39.2",
"eslint-plugin-unicorn": "62.0.0",
"happy-dom": "20.5.0",
"rollup": "4.57.1",
"terser": "5.46.0",
"typescript": "5.9.3",
"typescript-eslint": "8.54.0"
}
}