-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "fetch-inject",
"version": "3.3.1",
"description": "Dynamically inline assets into the DOM using Fetch Injection.",
"author": "VHS <[email protected]> (https://vhs.codeberg.page)",
"keywords": [
"fetch",
"import",
"async",
"promise",
"script"
],
"homepage": "https://vhs.codeberg.page/code/fetch-inject/",
"repository": {
"type": "git",
"url": "https://codeberg.org/vhs/fetch-inject.git"
},
"scripts": {
"dev": "miniserve --index test-harness.html",
"build": "esbuild fetch-inject.js --minify --outfile=fetch-inject.min.js",
"package": "npm run lint && npm run build && npm run test",
"test": "PW_EXPERIMENTAL_TS_ESM=1 playwright test",
"lint": "prettier --ignore-path .gitignore --check **/*.{js,ts,html}",
"format": "prettier --ignore-path .gitignore --write **/*.{js,ts,html}",
"changeset": "changeset"
},
"devDependencies": {
"@changesets/cli": "^2.27.2",
"@playwright/test": "^1.44.0",
"esbuild": "^0.14.27",
"miniserve": "^0.2.1",
"prettier": "^2.5.1"
},
"files": [
"COPYING",
"docs",
"fetch-inject.min.js",
"fetch-inject.js",
"module.d.ts",
"README.md"
],
"type": "module",
"browser": "fetch-inject.min.js",
"main": "fetch-inject.min.js",
"module": "fetch-inject.min.js",
"typings": "module.d.ts",
"license": "Zlib"
}