-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.47 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
{
"name": "@thlibjs/lumi",
"version": "0.1.1",
"packageManager": "pnpm@9.15.0",
"description": "Declarative DOM rendering with native HTML and plain JavaScript",
"keywords": [
"browser",
"declarative",
"dom",
"renderer",
"template"
],
"author": "Timo Huovinen <timoh89@gmail.com>",
"license": "Apache-2.0",
"homepage": "https://github.com/thlib/lumi#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/thlib/lumi.git"
},
"bugs": {
"url": "https://github.com/thlib/lumi/issues"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
".": {
"types": "./dist/lumi.d.ts",
"import": "./src/index.js",
"default": "./src/index.js"
},
"./dist/lumi.js": "./dist/lumi.js"
},
"types": "./dist/lumi.d.ts",
"jsdelivr": "./dist/lumi.js",
"unpkg": "./dist/lumi.js",
"files": [
"src",
"dist",
"README.md",
"API.md",
"DESIGN.md"
],
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "node src/build.js",
"build:types": "node src/build.js",
"build:bundle": "node src/build.js",
"build:spa": "pnpm run build && node examples/spa/lumi-build/build.js && node examples/spa/lumi-ts/build.js && node examples/spa/lumi-dsl/build-json-path.js && node examples/spa/lumi-dsl/build.js",
"build:spa:ts": "pnpm run build && node examples/spa/lumi-ts/build.js",
"build:spa:dsl": "pnpm run build && node examples/spa/lumi-dsl/build-json-path.js && node examples/spa/lumi-dsl/build.js",
"dev:spa": "pnpm run build && node examples/spa/lumi-build/build.js --serve",
"dev:spa:ts": "pnpm run build && node examples/spa/lumi-ts/build.js --serve",
"dev:spa:dsl": "pnpm run build && node examples/spa/lumi-dsl/build-json-path.js && node examples/spa/lumi-dsl/build.js --serve",
"lint": "pnpm run build && tsc -p jsconfig.json",
"benchmark": "node benchmark/performance-baseline.js",
"benchmark:spa": "node benchmark/spa-comparison.js",
"test": "node --test test/*.test.js",
"test:browser": "playwright test",
"test:package": "node scripts/test-package.js",
"prepack": "pnpm run build"
},
"engines": {
"node": ">=24"
},
"devDependencies": {
"@jsonjoy.com/json-path": "^18.28.0",
"@playwright/test": "^1.61.1",
"@types/jsdom": "^27.0.0",
"esbuild": "^0.28.1",
"jsdom": "^27.1.0",
"node": "^24.14.1",
"typescript": "^7.0.2"
}
}