-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 KB
/
package.json
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
{
"name": "@aulidev/json2html",
"version": "0.0.0",
"description": "Convert HTML to JSON",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {}
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"build": "NODE_ENV=production tsup",
"dev": "tsup --watch",
"format": "biome check --apply ./src",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"changeset": "changeset"
},
"keywords": [],
"author": "Sumanta <sumantablog@gmail.com>",
"license": "ISC",
"repository": "git@github.com:aulidev/json2html.git",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "^1.7.2",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/node": "^20.12.8",
"@vitest/coverage-v8": "^1.6.0",
"tsup": "^8.0.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"engines": {
"npm": "^8.1.0"
}
}