-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.85 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
{
"name": "hyperaxe",
"description": "Enchanted hyperscript weapon.",
"version": "3.0.2",
"author": "Nate Goldman <ungoldman@gmail.com> (https://ungoldman.com/)",
"bugs": {
"url": "https://github.com/ungoldman/hyperaxe/issues"
},
"dependencies": {
"html-tags": "^5.1.0",
"hyperscript": "^2.0.2"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@types/node": "^25.0.3",
"typescript": "^7.0.2"
},
"engines": {
"node": ">=22.12.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./factory": {
"types": "./dist/factory.d.ts",
"default": "./dist/factory.js"
},
"./factory.js": {
"types": "./dist/factory.d.ts",
"default": "./dist/factory.js"
}
},
"files": [
"dist"
],
"homepage": "https://github.com/ungoldman/hyperaxe#readme",
"keywords": [
"dom",
"factory",
"html",
"hyperscript",
"sugar"
],
"license": "ISC",
"main": "dist/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ungoldman/hyperaxe.git"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"coverage": "node --test --experimental-test-coverage --test-coverage-exclude='test/**' --test-coverage-lines=100 --test-coverage-branches=100 --test-coverage-functions=100 test/*.test.ts",
"format": "biome check --write .",
"lint": "biome check .",
"prebuild": "rm -rf dist",
"prepublishOnly": "npm run build",
"test": "npm run lint && npm run typecheck && npm run build && node --test test/*.test.ts",
"test:pack": "bash scripts/test-pack.sh",
"test:watch": "node --test --watch test/*.test.ts",
"typecheck": "tsc"
},
"sideEffects": false,
"type": "module",
"types": "dist/index.d.ts"
}