-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.29 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "polyfill-bundler",
"version": "1.0.102",
"license": "CC-BY-3.0",
"description": "Polyfill service.",
"homepage": "https://torben.website/polyfill-bundler",
"documentationWebsite": {
"languages": [
"deDE",
"enUS"
],
"name": "polyfill-bundler",
"tagline": "",
"trackingCode": ""
},
"keywords": [
"polyfill",
"bundle",
"service"
],
"files": [
"index.d.ts",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/thaibault/polyfill-bundler"
},
"scripts": {
"build": "yarn build:types; yarn build:plain",
"build:lint": "babel --presets @babel/preset-typescript --source-maps inline --out-file eslint.config.mjs eslint.config.ts",
"build:plain": "babel --plugins @babel/plugin-transform-runtime --presets @babel/preset-env,@babel/preset-typescript --source-maps inline --out-file index.js index.ts && sed --in-place --regexp-extended 's:^// *(#![^ ]+ ).*$:\\1node:' index.js && chmod +x index.js",
"build:types": "tsc --emitDeclarationOnly",
"check:types": "tsc --noEmit",
"clear": "rimraf --glob 'eslint.config.d.ts' 'index.d.ts' '*.js'",
"lint": "yarn build:lint && eslint",
"serve": "./index.js",
"start": "yarn serve",
"update": "yarn version patch && yarn npm publish",
"update:documentation": "documentation-website"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.16.0",
"@stylistic/eslint-plugin-ts": "^2.11.0",
"@types/eslint": "^9.6.1",
"@types/polyfill-library": "^3.108.4",
"@typescript-eslint/parser": "^8.17.0",
"documentation-website": "^1.0.341",
"eslint": "^9.16.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"webpack": "^5.97.1"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"clientnode": "^3.0.1249",
"polyfill-library": "^4.8.0"
},
"engines": {
"node": ">=20",
"npm": ">=10",
"yarn": ">=4"
},
"packageManager": "[email protected]+sha512.3003a14012e2987072d244c720506549c1aab73ee728208f1b2580a9fd67b92d61ba6b08fe93f6dce68fd771e3af1e59a0afa28dd242dd0940d73b95fedd4e90"
}