-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.04 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.04 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
{
"name" : "@capsulescodes/browser-php",
"description" : "PHP CLI and Web server on browser",
"version" : "0.6.11",
"keywords" : [
"node",
"browser",
"php"
],
"homepage" : "https://github.com/capsulescodes/browser-php",
"repository" : {
"type" : "git",
"url" : "git+https://github.com/capsulescodes/browser-php.git"
},
"license" : "MIT",
"author" : {
"name" : "Yannick Decat",
"email" : "yannick@capsules.codes",
"url" : "https://capsules.codes/"
},
"scripts" : {
"build" : "vite build",
"test" : "vitest run",
"postinstall" : "node dist/installer.js"
},
"files" : [
"!*",
"bin",
"dist"
],
"bin" : {
"php-server" : "bin/server.js",
"php-cli" : "bin/cli.js"
},
"dependencies" : {
"@php-wasm/node" : "^3.1.15",
"@dotenvx/dotenvx" : "^1.59.1",
"vite" : "^8.0.3"
},
"devDependencies" : {
"@stylistic/eslint-plugin" : "^5.10.0",
"@types/node" : "^25.5.0",
"eslint" : "^10.1.0",
"tsx" : "^4.21.0",
"typescript" : "^6.0.2",
"typescript-eslint" : "^8.58.0",
"vitest" : "^4.1.2"
},
"type" : "module"
}