-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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
{
"name": "@mutablelogic/js-framework",
"version": "0.0.0",
"description": "Javascript Framework",
"main": "dist/index.js",
"scripts": {
"dev": "NODE_ENV=development node config/esbuild.table.mjs",
"build": "rm -fr dist && install -d dist && NODE_ENV=production node config/esbuild.table.mjs",
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint -c config/eslint.config.mjs --cache --fix ./src/**/*.js",
"docs": "jsdoc -c config/jsdoc.config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mutablelogic/js-framework.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"author": "David Thorpe",
"license": "Apache",
"bugs": {
"url": "https://github.com/mutablelogic/js-framework/issues"
},
"homepage": "https://github.com/mutablelogic/js-framework#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.0.0",
"esbuild": "^0.20.2",
"esbuild-plugin-css-modules": "^0.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"globals": "^15.0.0",
"jsdoc": "^4.0.2"
},
"dependencies": {
"bootstrap-icons": "^1.11.3",
"highlight.js": "^11.9.0",
"lit": "^3.1.2",
"mapbox-gl": "^3.7.0"
},
"files": [
"dist/**/*.{js,map,woff,woff2,txt,ttf,css,html,svg}"
]
}