-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.2 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.2 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": "@dconco/phpspa",
"version": "2.0.13",
"description": "Client-side JavaScript library for PhpSPA - Component-based PHP framework with SPA-like navigation",
"type": "module",
"main": "src/script/phpspa.cjs",
"module": "src/script/phpspa.mjs",
"browser": "src/script/phpspa.js",
"types": "src/script/types/index.d.ts",
"files": [
"src/script/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c"
},
"keywords": [
"phpspa",
"php",
"spa",
"single-page-application",
"component",
"state-management",
"navigation",
"morphdom"
],
"author": "Dave Conco <me@dconco.tech> (https://dconco.tech)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dconco/phpspa.git"
},
"bugs": {
"url": "https://github.com/dconco/phpspa/issues"
},
"homepage": "https://phpspa.tech",
"dependencies": {
"morphdom": "^2.7.7"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"rollup": "^4.53.5",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
}
}