-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.81 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.81 KB
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
{
"name": "solidmarks",
"version": "0.1.0",
"description": "",
"type": "module",
"private": true,
"scripts": {
"test": "echo \"No tests exist.\"",
"build": "webpack --mode=production --node-env=production",
"clean": "rm -rf node_modules package-lock.json",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"lint": "npm run lint:check",
"lint:check": "npm run lint:eslint && npm run lint:addon",
"lint:fix": "npm run lint:eslint -- --fix",
"lint:eslint": "eslint --config eslint.config.mjs .",
"lint:addon": "web-ext lint -s addon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NeiRo21/solidmarks.git"
},
"keywords": [],
"author": "NeiRo21",
"license": "MIT",
"bugs": {
"url": "https://github.com/NeiRo21/solidmarks/issues"
},
"homepage": "https://github.com/NeiRo21/solidmarks#readme",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@eslint/markdown": "^7.5.1",
"@types/uuid": "^11.0.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-headers": "^1.3.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"path": "^0.12.7",
"prettier": "^3.6.2",
"source-map-loader": "^5.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"web-ext-plugin": "^2.13.0",
"webpack": "^5.105.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@inrupt/solid-client": "latest",
"@neiro21/solid-client-authn-webext": "latest",
"@types/firefox-webext-browser": "^120.0.0"
},
"engines": {
"node": "^20.0.0 || ^22.0.0"
}
}