-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.74 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.74 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
80
{
"name": "@wormss/dom-builder",
"version": "1.10.0",
"description": "Build Dom structure in chains",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=20.19.0"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"test": "vitest run --reporter verbose",
"prepublishOnly": "npm run build",
"build": "tsdown",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/WORMSS/dom-builder.git"
},
"keywords": [
"dom",
"html",
"builder",
"fluent",
"chainable",
"typescript",
"node",
"browser",
"template",
"generator",
"css",
"style",
"attributes",
"structure",
"web"
],
"author": "Colin Richardson <wormssmail@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/WORMSS/dom-builder/issues"
},
"homepage": "https://github.com/WORMSS/dom-builder#readme",
"files": [
"README.md",
"dist"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"tsdown": "^0.21.10",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@wormss/genstack": "^1.5.0",
"change-case": "^5.4.4"
}
}