forked from lockb0x-llc/lockbox-codex-forge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 733 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 733 Bytes
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
{
"name": "lockbox-codex-forge",
"version": "1.0.0",
"description": "Lockb0x Codex Forge Chrome Extension",
"main": "background.js",
"type": "module",
"scripts": {
"lint": "eslint . --ext .js",
"format": "prettier --write \"**/*.{js,json,md,css,html}\"",
"test": "vitest run",
"test:watch": "vitest",
"build-manifest": "node build-manifest.js",
"papi:add": "papi add dot -n polkadot",
"papi:generate": "papi"
},
"devDependencies": {
"eslint": "^9.38.0",
"happy-dom": "^20.0.10",
"jsdom": "^27.1.0",
"prettier": "^3.6.2",
"vitest": "^4.0.6"
},
"dependencies": {
"@polkadot-api/descriptors": "^0.0.1",
"dotenv": "^17.2.3",
"polkadot-api": "^1.20.1"
}
}