/ src / package.template.json
package.template.json
 1  {
 2    "name": "@jayay/pcre2-web",
 3    "repository": "git://github.com/jayay/pcre2-web.git",
 4    "description": "libpcre2 brought to the web using WASM.",
 5    "version": "0.5.0",
 6    "scripts": {
 7    },
 8    "keywords": [
 9      "libpcre2",
10      "pcre",
11      "regex",
12      "wasm"
13    ],
14    "author": "Jakob Jungmann",
15    "license": "BSD-3-Clause",
16    "devDependencies": {
17      "path": "^0.12.7"
18    },
19    "files": [
20      "out.wasm",
21      "loader.js",
22      "loader.d.ts",
23      "pcre2.js",
24      "pcre2.d.ts",
25      "LICENSE.txt"
26    ],
27    "type": "module",
28    "publishConfig": {
29      "registry":"https://npm.pkg.github.com"
30    },
31    "main": "loader.js",
32    "sideEffects": false
33  }