-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "@greenweb/grid-aware-websites",
"description": "A library to enable developers to implement grid awareness in their websites",
"version": "0.1.3",
"type": "module",
"main": "index.js",
"exports": {
".": {
"import": "./index.js"
},
"./plugins/edge": {
"import": "./plugins/edge/index.js"
}
},
"scripts": {
"lint": "npx eslint .",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"test": "vitest"
},
"keywords": [
"grid-aware",
"carbon-aware",
"sustainability",
"greenweb"
],
"bugs": {
"url": "https://github.com/thegreenwebfoundation/grid-aware-websites/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/thegreenwebfoundation/grid-aware-websites"
},
"author": {
"name": "Fershad Irani",
"email": "fershad@greenweb.org",
"url": "https://fershad.com"
},
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.14.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"prettier": "3.3.3",
"vitest": "^2.1.4"
},
"dependencies": {
"@tgwf/co2": "^0.16.1"
}
}