-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.22 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.22 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": "@layoutmaster/layoutmaster",
"version": "0.1.7",
"description": "Fast DOMless layout with solved pieces, continuations, and exclusions.",
"author": "cosmiciron",
"license": "Apache-2.0",
"type": "module",
"sideEffects": false,
"main": "./src/index.js",
"module": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.js",
"default": "./src/index.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=20"
},
"files": [
"src",
"engine/dist",
"!engine/dist/**/*.map",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:engine",
"build:engine": "node ./scripts/build-engine.mjs",
"clean": "npm run clean:engine",
"clean:engine": "rimraf ./engine/dist",
"serve": "node ./scripts/serve.mjs",
"test": "npm run test:regression",
"test:all": "npm run test:regression && npm run test:engine-integrity",
"test:engine-integrity": "npm run build:engine && node --test tests/engine-integrity.spec.mjs",
"test:regression": "npm run build:engine && node --test tests/regression.spec.mjs",
"test:update-regression-snapshots": "npm run build:engine && node --test tests/regression.spec.mjs -- --update-regression-snapshots",
"test:performance": "npm run build:engine && node tests/performance-benchmark.mjs",
"test:update-performance-baseline": "npm run build:engine && node tests/performance-benchmark.mjs --update-performance-baseline",
"prepack": "npm run build",
"pack:check": "npm pack --dry-run"
},
"packageManager": "npm@11.12.1",
"repository": {
"type": "git",
"url": "git+https://github.com/cosmiciron/layoutmaster.git"
},
"bugs": {
"url": "https://github.com/cosmiciron/layoutmaster/issues"
},
"homepage": "https://github.com/cosmiciron/layoutmaster#readme",
"devDependencies": {
"@types/node": "^22.13.1",
"bidi-js": "^1.0.3",
"rimraf": "^6.1.3",
"tsup": "^8.5.1",
"typescript": "^5.7.3"
},
"keywords": [
"layout",
"domless",
"generated-ui",
"text-layout",
"measurement",
"pagination",
"typography"
],
"publishConfig": {
"access": "public"
}
}