@doscientos/pwa 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +55 -54
package/package.json
CHANGED
|
@@ -1,54 +1,55 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@doscientos/pwa",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Safe, framework-aware PWA installation primitives for Doscientos applications.",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"author": "Doscientos <dev@doscientos.es>",
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "https://github.com/doscientos-es/pwa.git"
|
|
11
|
-
},
|
|
12
|
-
"homepage": "https://github.com/doscientos-es/pwa#readme",
|
|
13
|
-
"bugs": {
|
|
14
|
-
"url": "https://github.com/doscientos-es/pwa/issues"
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
"*.d.ts",
|
|
18
|
-
"*.js",
|
|
19
|
-
"README.md"
|
|
20
|
-
],
|
|
21
|
-
"type": "module",
|
|
22
|
-
"exports": {
|
|
23
|
-
"./core": {
|
|
24
|
-
"types": "./core.d.ts",
|
|
25
|
-
"import": "./core.js"
|
|
26
|
-
},
|
|
27
|
-
"./react": {
|
|
28
|
-
"types": "./react.d.ts",
|
|
29
|
-
"import": "./react.js"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
"publishConfig": {
|
|
33
|
-
"access": "public"
|
|
34
|
-
},
|
|
35
|
-
"scripts": {
|
|
36
|
-
"check": "node --test test/core.test.mjs",
|
|
37
|
-
"prepublishOnly": "npm run check",
|
|
38
|
-
"
|
|
39
|
-
"version:
|
|
40
|
-
"version:
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@doscientos/pwa",
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Safe, framework-aware PWA installation primitives for Doscientos applications.",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Doscientos <dev@doscientos.es>",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/doscientos-es/pwa.git"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/doscientos-es/pwa#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/doscientos-es/pwa/issues"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"*.d.ts",
|
|
18
|
+
"*.js",
|
|
19
|
+
"README.md"
|
|
20
|
+
],
|
|
21
|
+
"type": "module",
|
|
22
|
+
"exports": {
|
|
23
|
+
"./core": {
|
|
24
|
+
"types": "./core.d.ts",
|
|
25
|
+
"import": "./core.js"
|
|
26
|
+
},
|
|
27
|
+
"./react": {
|
|
28
|
+
"types": "./react.d.ts",
|
|
29
|
+
"import": "./react.js"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"check": "node --test test/core.test.mjs",
|
|
37
|
+
"prepublishOnly": "npm run check",
|
|
38
|
+
"release:check": "pnpm run check && npm pack --dry-run",
|
|
39
|
+
"version:major": "npm version major --no-git-tag-version",
|
|
40
|
+
"version:minor": "npm version minor --no-git-tag-version",
|
|
41
|
+
"version:patch": "npm version patch --no-git-tag-version"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"react": ">=18.0.0 <20"
|
|
45
|
+
},
|
|
46
|
+
"peerDependenciesMeta": {
|
|
47
|
+
"react": {
|
|
48
|
+
"optional": true
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=22.18.0"
|
|
53
|
+
},
|
|
54
|
+
"packageManager": "pnpm@9.15.2"
|
|
55
|
+
}
|