Skip to content

Commit f483373

Browse files
committed
1.0.0
0 parents  commit f483373

19 files changed

+2888
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dist
2+
node_modules

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"esbenp.prettier-vscode"
4+
]
5+
}

.vscode/settings.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"editor.codeActionsOnSave": {
4+
"source.organizeImports": "explicit"
5+
},
6+
"[typescript]": {
7+
"editor.defaultFormatter": "esbenp.prettier-vscode"
8+
}
9+
}

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) Alec Larson
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

package.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"name": "@json-qs/json-qs",
3+
"type": "module",
4+
"version": "1.0.0",
5+
"exports": {
6+
".": {
7+
"types": "./dist/index.d.ts",
8+
"default": "./dist/index.js"
9+
}
10+
},
11+
"files": [
12+
"dist"
13+
],
14+
"license": "MIT",
15+
"author": "Alec Larson",
16+
"repository": {
17+
"type": "git",
18+
"url": "https://github.com/alloc/json-qs.git"
19+
},
20+
"prettier": "@alloc/prettier-config",
21+
"scripts": {
22+
"dev": "rimraf dist && tsup --sourcemap --watch",
23+
"build": "rimraf dist && tsup",
24+
"lint": "tsc -p . --outDir node_modules/.tmp"
25+
},
26+
"devDependencies": {
27+
"@alloc/prettier-config": "^1.0.0",
28+
"@types/node": "^22.8.1",
29+
"prettier": "^3.3.3",
30+
"radashi": "12.2.0-beta.af825f4",
31+
"rimraf": "^6.0.1",
32+
"tsup": "^8.3.5",
33+
"typescript": "^5.6.3",
34+
"vitest": "^2.1.3"
35+
}
36+
}

0 commit comments

Comments
 (0)