-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.06 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.06 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": "@distributed/utm",
"type": "module",
"description": "Small library to parse utm parameters",
"version": "0.1.3",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.mjs",
"repository": "https://github.com/distributedvc/utm",
"publishConfig": {
"access": "public"
},
"keywords": [
"utm",
"parameters",
"params",
"library"
],
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"scripts": {
"start": "tsup src/index.ts --format esm,cjs --watch --dts",
"build": "rimraf dist/ && tsup src/index.ts --format esm,cjs --dts --minify",
"test": "yarn lint && yarn vitest run --dom",
"lint": "eslint --ext .ts src/",
"prepare": "yarn build",
"size": "size-limit",
"analyze": "size-limit --why",
"release": "yarn test && standard-version && git push --follow-tags && npm publish"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint"
}
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "3 KB"
},
{
"path": "dist/index.mjs",
"limit": "3 KB"
}
],
"devDependencies": {
"@commitlint/cli": "19.0.3",
"@commitlint/config-conventional": "19.0.3",
"@size-limit/preset-small-lib": "11.0.2",
"@swc/core": "1.4.2",
"@tsconfig/recommended": "1.0.3",
"@types/node": "20.11.24",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"@vercel/node": "3.0.20",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"happy-dom": "13.6.2",
"husky": "9.0.11",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"size-limit": "11.0.2",
"standard-version": "9.5.0",
"tsup": "8.0.2",
"typescript": "5.3.3",
"vitest": "1.3.1"
},
"dependencies": {
"query-string": "9.0.0"
},
"packageManager": "yarn@4.1.0"
}