-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
27 lines (27 loc) · 868 Bytes
/
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
{
"name": "geo-elements",
"description": "A throw back to the good old days of web 1.0",
"version": "0.0.6",
"type": "module",
"author": "Alex Riviere (https://alex.party)",
"license": "MIT",
"main": "dist/geo-elements.iife.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:docs": "vite build --config vite.docs.js ",
"serve": "vite --config vite.docs.js",
"lint": "eslint --config=.eslintrc.js .eslintrc.js vite.config.js vite.docs.js src",
"fix": "eslint --fix --config=.eslintrc.js .eslintrc.js vite.config.js vite.docs.js src"
},
"devDependencies": {
"eslint": "^9.11.0",
"@eslint/js": "^9.11.0",
"@eslint/eslintrc": "^3.1.0",
"eslint-config-tjw-base": "^3.0.1",
"eslint-config-tjw-jsdoc": "^1.0.5",
"eslint-plugin-jsdoc": "^50.2.4",
"sass": "^1.79.3",
"vite": "5.4.7"
}
}