-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.59 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "tyqs",
"version": "0.1.3",
"description": "Tiny and type-safe querystring library for the web",
"keywords": [
"parse",
"qs",
"query",
"queryparams",
"querystring",
"querystringify",
"searchparams",
"stringify",
"tqs",
"tyqs",
"urlqueryparams",
"urlsearchparams"
],
"homepage": "https://github.com/motss/tyqs",
"bugs": {
"url": "https://github.com/motss/tyqs/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:motss/tyqs.git"
},
"funding": "https://github.com/motss/tyqs?sponsor=1",
"license": "MIT",
"author": {
"name": "Rong Sen Ng (motss)",
"email": "contact@motss.app",
"url": "https://github.com/motss"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./parse": {
"types": "./dist/parse.d.ts",
"import": "./dist/parse.js",
"default": "./dist/parse.js"
},
"./stringify": {
"types": "./dist/stringify.d.ts",
"import": "./dist/stringify.js",
"default": "./dist/stringify.js"
},
"./dist/*": "./dist/*"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist/*.*js.map",
"dist/*.*js",
"dist/*.d.ts.map",
"dist/*.d.ts",
"!**/*bench*/**/*.*",
"!**/*test*/**/*.*"
],
"scripts": {
"bench": "vitest bench",
"build": "npm run clean && tsc",
"clean": "sh $(npm root)/@reallyland/tools/cleanup.sh",
"postinstall": "FILE=\"$(npm root)/@reallyland/tools/postinstall.sh\"; if [ -f \"$FILE\" ]; then sh \"$FILE\"; fi",
"lint": "sh $(npm root)/@reallyland/tools/lint-build.sh -c $(npm root)/@reallyland/tools/.eslintrc.json -s 'src/**/*.ts'",
"lint-commit": "sh $(npm root)/@reallyland/tools/lint-commit.sh",
"lint:build": "sh $(npm root)/@reallyland/tools/lint-build.sh -c $(npm root)/@reallyland/tools/browser/.build.eslintrc.json",
"pre-commit": "sh $(npm root)/@reallyland/tools/pre-commit.sh",
"test": "vitest --coverage",
"version": "sh $(npm root)/@reallyland/tools/generate-changelogs.sh && git add *CHANGELOG.md"
},
"dependencies": {
"tslib": "^2.5.0"
},
"devDependencies": {
"@reallyland/tools": "^0.3.5",
"@types/lodash.clonedeep": "^4.5.7",
"@vitest/coverage-c8": "^0.28.5",
"lodash.clonedeep": "^4.5.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.28.5"
},
"publishConfig": {
"access": "public"
},
"readme": "https://github.com/motss/tyqs/blob/main/README.md"
}