generated from shgysk8zer0/npm-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.69 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@aegisjsproject/tempplate",
"version": "0.0.5",
"description": "Template repository for `@aegisjsproject/component` components",
"keywords": [
"aegis",
"dom",
"html",
"css",
"theming",
"secure",
"sanitizer-api",
"html-templates",
"constructable-stylesheets",
"custom-elements",
"web-components",
"component-library",
"aegis-template",
"github-template"
],
"type": "module",
"main": "./hello-world.cjs",
"module": "./hello-world.js",
"unpkg": "./hello-world.js",
"exports": {
".": {
"import": "./hello-world.js",
"require": "./hello-world.cjs"
},
"./*.js": {
"import": "./*.js",
"require": "./*.cjs"
},
"./*.mjs": {
"import": "./*.js",
"require": "./*.cjs"
},
"./*.cjs": {
"import": "./*.js",
"require": "./*.cjs"
},
"./*": {
"import": "./*.js",
"require": "./*.cjs"
}
},
"engines": {
"node": ">=18.0.0"
},
"private": false,
"scripts": {
"test": "npm run lint:js && npm run build",
"start": "http-server ./ -c-1 --port 8080 --gzip true --brotli true -a localhost -o /test/",
"preversion": "npm test",
"prepare": "npm run build",
"lint:js": "eslint .",
"fix:js": "eslint . --fix",
"build": "npm run build:js",
"clean": "rm -f ./*.cjs",
"build:js": "npm run clean && rollup -c rollup.config.js",
"create:lock": "npm i --package-lock-only --ignore-scripts --no-audit --no-fund",
"version:bump": "npm run version:bump:patch",
"version:bump:patch": "npm version --no-git-tag-version patch && npm run create:lock",
"version:bump:minor": "npm version --no-git-tag-version minor && npm run create:lock",
"version:bump:major": "npm version --no-git-tag-version major && npm run create:lock"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AegisJSProject/template.git"
},
"author": "Chris Zuber <admin@kernvalley.us>",
"license": "MIT",
"funding": [
{
"type": "librepay",
"url": "https://liberapay.com/shgysk8zer0"
},
{
"type": "github",
"url": "https://github.com/sponsors/shgysk8zer0"
}
],
"bugs": {
"url": "https://github.com/AegisJSProject/template/issues"
},
"homepage": "https://github.com/AegisJSProject/template#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.0",
"@shgysk8zer0/eslint-config": "^1.0.3",
"@shgysk8zer0/rollup-import": "^1.2.5",
"eslint": "^9.18.0",
"http-server": "^14.1.1",
"rollup": "^4.31.0"
},
"dependencies": {
"@aegisjsproject/component": "^0.1.6",
"@aegisjsproject/core": "^0.2.22",
"@aegisjsproject/styles": "^0.2.6"
}
}