-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.19 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.19 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
81
82
83
84
85
{
"name": "html-json-converter",
"type": "module",
"version": "3.1.1",
"description": "A simple HTML to JSON and JSON to HTML converter",
"main": "dist/index.js",
"client": "dist/client.js",
"exports": {
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.js",
"default": "./dist/client.js"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js",
"default": "./dist/server.js"
},
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node ./dist/index.js",
"build": "rimraf dist && tsc",
"check-format": "biome check src/",
"format": "biome format --write src/",
"lint": "biome lint src/",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm --ignoreRules",
"test": "vitest run",
"test:coverage": "rimraf coverage/.tmp && vitest run --coverage",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci",
"ci": "npm run lint && npm run test && npm run build"
},
"keywords": [
"typescript",
"html",
"json",
"converter",
"html-to-json",
"html to json",
"json-to-html",
"json to html",
"html to json converter",
"json to html converter"
],
"engines": {
"node": ">=16"
},
"author": "Techlism <kundan@techlism.in> (https://github.com/techlism)",
"bugs": {
"url": "https://github.com/techlism/html-json-converter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techlism/html-json-converter.git"
},
"files": [
"dist",
"dist/client.js",
"dist/server.js",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map"
],
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.9",
"@types/node": "^20.17.6",
"@vitest/coverage-v8": "^2.1.4",
"rimraf": "^5.0.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^2.1.4"
},
"dependencies": {
"@types/jsdom": "^21.1.7",
"jsdom": "^25.0.1"
}
}