-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.07 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
{
"name": "@amgg/elhelper",
"version": "2.0.6",
"description": "a small set of simple yet capable helpers for creating/modifying DOM elements",
"author": "amgg",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adrianmgg/elhelper.git"
},
"private": false,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"typescript": "^4.5.4"
},
"scripts": {
"build:cjs": "tsc -p tsconfig_cjs.json",
"build:esm": "tsc -p tsconfig_esm.json",
"build:umd": "tsc -p tsconfig_umd.json",
"build:types": "tsc -p tsconfig_types.json",
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
"setup_for_gh_release": "node scripts/setup_for_gh_release.mjs"
},
"main": "dist/cjs/elhelper.js",
"module": "dist/esm/elhelper.js",
"umd:main": "dist/umd/elhelper.js",
"types": "dist/types/elhelper.d.ts",
"files": [
"dist",
"src"
]
}