forked from WebOfTrust/polaris-web
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "signify-polaris-web",
"version": "1.0.2",
"description": "companion package for signify browser extension",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"prepare": "npm run build",
"build": "tsc -p tsconfig.build.json",
"test": "vitest",
"format": "prettier --write .",
"lint": "eslint src",
"docs:build": "typedoc src/index.ts --out out",
"docs:serve": "npm run docs:build && serve out"
},
"author": "RootsID",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/chrome": "^0.0.268",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^20.12.12",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jsdom": "^24.1.0",
"prettier": "^3.2.5",
"serve": "^14.2.3",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0",
"vitest": "^1.6.0"
},
"workspaces": [
"examples/*"
]
}