generated from AkashRajpurohit/ts-npm-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "remark-add-query-param",
"version": "1.2.1",
"description": "A remark plugin to add query parameters to links",
"repository": {
"type": "git",
"url": "https://github.com/AkashRajpurohit/remark-add-query-param.git"
},
"homepage": "https://github.com/AkashRajpurohit/remark-add-query-param",
"bugs": "https://github.com/AkashRajpurohit/remark-add-query-param/issues",
"author": {
"name": "AkashRajpurohit",
"email": "[email protected]",
"url": "https://akashrajpurohit.com"
},
"keywords": [
"remark",
"remark-plugin",
"query-params",
"query-parameters",
"query-string"
],
"license": "MIT",
"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"
},
"dependencies": {
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.7.2",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/mdast": "^4.0.3",
"@types/node": "^20.12.7",
"@types/unist": "^3.0.2",
"@vitest/coverage-v8": "^1.5.3",
"remark": "^15.0.1",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.5.3"
},
"publishConfig": {
"access": "public"
}
}