-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.22 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
{
"name": "json2php",
"version": "0.0.12",
"description": "JSON to PHP converter",
"files": [
"dist",
"package.json"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc && vite build",
"clean": "rm -rf dist",
"lint": "biome check . && tsc --noEmit",
"format": "biome check . --write",
"test": "vitest --run",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/daniel-zahariev/json2php.git"
},
"keywords": [
"JSON",
"PHP",
"Converter"
],
"author": "Daniel Zahariev <[email protected]>",
"contributors": [
{
"name": "Daniel Zahariev",
"email": "[email protected]"
}
],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.1",
"release-it": "^17.10.0",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.8"
},
"license": "BSD",
"readmeFilename": "README.md"
}